2018-07-12 13:24:59 +03:00
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-05-14 03:22:52 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:34:5
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | my_macro!(); //~ ERROR can't use a procedural macro from the same crate that defines it
|
2018-08-15 03:51:12 +03:00
|
|
|
| ^^^^^^^^
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-05-14 03:22:52 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:37:5
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | my_macro_attr!(); //~ ERROR can't use a procedural macro from the same crate that defines it
|
2018-08-15 03:51:12 +03:00
|
|
|
| ^^^^^^^^^^^^^
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-05-14 03:22:52 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:40:5
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | MyTrait!(); //~ ERROR can't use a procedural macro from the same crate that defines it
|
2018-08-15 03:51:12 +03:00
|
|
|
| ^^^^^^^
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-08-18 02:38:51 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:43:3
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | #[my_macro] //~ ERROR can't use a procedural macro from the same crate that defines it
|
2018-08-15 03:51:12 +03:00
|
|
|
| ^^^^^^^^
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-08-18 02:38:51 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:45:3
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | #[my_macro_attr] //~ ERROR can't use a procedural macro from the same crate that defines it
|
2018-08-15 03:51:12 +03:00
|
|
|
| ^^^^^^^^^^^^^
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-08-18 02:38:51 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:47:3
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | #[MyTrait] //~ ERROR can't use a procedural macro from the same crate that defines it
|
2018-08-15 03:51:12 +03:00
|
|
|
| ^^^^^^^
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-05-14 03:22:52 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:50:10
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | #[derive(my_macro)] //~ ERROR can't use a procedural macro from the same crate that defines it
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-05-14 03:22:52 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:52:10
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | #[derive(my_macro_attr)] //~ ERROR can't use a procedural macro from the same crate that defines it
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: can't use a procedural macro from the same crate that defines it
|
2018-05-14 03:22:52 +03:00
|
|
|
--> $DIR/macro-namespace-reserved-2.rs:54:10
|
2018-07-12 13:24:59 +03:00
|
|
|
|
|
|
|
|
LL | #[derive(MyTrait)] //~ ERROR can't use a procedural macro from the same crate that defines it
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
|
|
|
|