|
| 1 | +// Copyright 2018 The Rust Project Developers. See the COPYRIGHT |
| 2 | +// file at the top-level directory of this distribution and at |
| 3 | +// http://rust-lang.org/COPYRIGHT. |
| 4 | +// |
| 5 | +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +// option. This file may not be copied, modified, or distributed |
| 9 | +// except according to those terms. |
| 10 | + |
| 11 | +// compile-flags: --edition=2015 |
| 12 | +// aux-build:edition-kw-macro-2018.rs |
| 13 | + |
| 14 | +#![feature(raw_identifiers)] |
| 15 | + |
| 16 | +#[macro_use] |
| 17 | +extern crate edition_kw_macro_2018; |
| 18 | + |
| 19 | +// `async` |
| 20 | +pub fn check_async() { |
| 21 | + let mut async = 1; // OK |
| 22 | + let mut r#async = 1; // OK |
| 23 | + |
| 24 | + r#async = consumes_async!(async); // OK |
| 25 | + // r#async = consumes_async!(r#async); // ERROR, not a match |
| 26 | + // r#async = consumes_async_raw!(async); // ERROR, not a match |
| 27 | + r#async = consumes_async_raw!(r#async); // OK |
| 28 | + |
| 29 | + if passes_ident!(async) == 1 {} // OK |
| 30 | + if passes_ident!(r#async) == 1 {} // OK |
| 31 | + one_async::async(); // OK |
| 32 | + one_async::r#async(); // OK |
| 33 | + two_async::async(); // OK |
| 34 | + two_async::r#async(); // OK |
| 35 | +} |
| 36 | + |
| 37 | +mod one_async { |
| 38 | + produces_async! {} // ERROR, FIXME |
| 39 | +} |
| 40 | +mod two_async { |
| 41 | + produces_async_raw! {} // OK |
| 42 | +} |
| 43 | + |
| 44 | +// `proc` |
| 45 | +pub fn check_proc() { |
| 46 | + // let mut proc = 1; // ERROR, reserved |
| 47 | + let mut r#proc = 1; // OK |
| 48 | + |
| 49 | + r#proc = consumes_proc!(proc); // OK |
| 50 | + // r#proc = consumes_proc!(r#proc); // ERROR, not a match |
| 51 | + // r#proc = consumes_proc_raw!(proc); // ERROR, not a match |
| 52 | + r#proc = consumes_proc_raw!(r#proc); // OK |
| 53 | + |
| 54 | + // if passes_ident!(proc) == 1 {} // ERROR, reserved |
| 55 | + if passes_ident!(r#proc) == 1 {} // OK |
| 56 | + // one_proc::proc(); // ERROR, reserved |
| 57 | + // one_proc::r#proc(); // OK, FIXME |
| 58 | + // two_proc::proc(); // ERROR, reserved |
| 59 | + two_proc::r#proc(); // OK |
| 60 | +} |
| 61 | + |
| 62 | +mod one_proc { |
| 63 | + // produces_proc! {} // OK, FIXME |
| 64 | +} |
| 65 | +mod two_proc { |
| 66 | + produces_proc_raw! {} // OK |
| 67 | +} |
| 68 | + |
| 69 | +fn main() {} |
0 commit comments