rust/tests/ui/proc-macro/keep-expr-tokens.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
599 B
Rust
Raw Normal View History

2020-05-19 15:56:20 -05:00
// aux-build:test-macros.rs
// compile-flags: -Z span-debug
2020-05-19 15:56:20 -05:00
#![feature(stmt_expr_attributes)]
#![feature(proc_macro_hygiene)]
#![feature(rustc_attrs)]
#![no_std] // Don't load unnecessary hygiene information from std
extern crate std;
2020-05-19 15:56:20 -05:00
extern crate test_macros;
use test_macros::recollect_attr;
fn main() {
#[test_macros::recollect_attr]
for item in missing_fn() {} //~ ERROR cannot find
(#[recollect_attr] #[recollect_attr] ((#[recollect_attr] bad))); //~ ERROR cannot
#[test_macros::print_attr]
#[rustc_dummy]
{ 1 +1; } // Don't change the weird spacing of the '+'
2020-05-19 15:56:20 -05:00
}