1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
// { dg-additional-options "-frust-crate-type=proc-macro" }
mod inner {
struct InnerStruct;
}
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
type AliasedType = inner::InnerStruct;
// { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" "" { target *-*-* } .+1 }
#[proc_macro_attribute]
use inner::InnerStruct;
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
struct MyStruct;
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
struct MyCurlyStruct {
member: usize,
}
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
struct MyTupleStruct(usize);
#[proc_macro_attribute]
// { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" "" { target *-*-* } .-1 }
extern crate my_extern_crate; // { dg-error "unknown crate .my_extern_crate." }
// { dg-error "failed to locate crate .my_extern_crate." "" { target *-*-* } .-1 }
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
mod my_module {}
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
enum MyEnum {}
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
union MyUnion {
f1: u32,
f2: f32,
}
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
const MY_CONST_STR: &str = "my_string";
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
static MY_STATIC_USIZE: usize = 10;
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
trait MyTrait {}
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
impl MyStruct {}
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
impl MyTrait for MyStruct {}
#[proc_macro_attribute] // { dg-error "the .#.proc_macro_attribute.. attribute may only be used on bare functions" }
extern "C" {}
|