mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 10:13:54 +00:00
27919ceba7
CC #89566.
118 lines
2.7 KiB
Plaintext
118 lines
2.7 KiB
Plaintext
error: cannot determine resolution for the attribute macro `derive`
|
|
--> $DIR/issue-36617.rs:1:4
|
|
|
|
|
LL | #![derive(Copy)]
|
|
| ^^^^^^
|
|
|
|
|
= note: import resolution is stuck, try simplifying macro imports
|
|
|
|
error: cannot determine resolution for the attribute macro `test`
|
|
--> $DIR/issue-36617.rs:4:4
|
|
|
|
|
LL | #![test]
|
|
| ^^^^
|
|
|
|
|
= note: import resolution is stuck, try simplifying macro imports
|
|
|
|
error: cannot determine resolution for the attribute macro `test_case`
|
|
--> $DIR/issue-36617.rs:7:4
|
|
|
|
|
LL | #![test_case]
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: import resolution is stuck, try simplifying macro imports
|
|
|
|
error: cannot determine resolution for the attribute macro `bench`
|
|
--> $DIR/issue-36617.rs:10:4
|
|
|
|
|
LL | #![bench]
|
|
| ^^^^^
|
|
|
|
|
= note: import resolution is stuck, try simplifying macro imports
|
|
|
|
error: cannot determine resolution for the attribute macro `global_allocator`
|
|
--> $DIR/issue-36617.rs:13:4
|
|
|
|
|
LL | #![global_allocator]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: import resolution is stuck, try simplifying macro imports
|
|
|
|
error: `derive` attribute cannot be used at crate level
|
|
--> $DIR/issue-36617.rs:1:1
|
|
|
|
|
LL | #![derive(Copy)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
...
|
|
LL | fn main() {}
|
|
| ---- the inner attribute doesn't annotate this function
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
LL - #![derive(Copy)]
|
|
LL + #[derive(Copy)]
|
|
|
|
|
|
|
error: `test` attribute cannot be used at crate level
|
|
--> $DIR/issue-36617.rs:4:1
|
|
|
|
|
LL | #![test]
|
|
| ^^^^^^^^
|
|
...
|
|
LL | fn main() {}
|
|
| ---- the inner attribute doesn't annotate this function
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
LL - #![test]
|
|
LL + #[test]
|
|
|
|
|
|
|
error: `test_case` attribute cannot be used at crate level
|
|
--> $DIR/issue-36617.rs:7:1
|
|
|
|
|
LL | #![test_case]
|
|
| ^^^^^^^^^^^^^
|
|
...
|
|
LL | fn main() {}
|
|
| ---- the inner attribute doesn't annotate this function
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
LL - #![test_case]
|
|
LL + #[test_case]
|
|
|
|
|
|
|
error: `bench` attribute cannot be used at crate level
|
|
--> $DIR/issue-36617.rs:10:1
|
|
|
|
|
LL | #![bench]
|
|
| ^^^^^^^^^
|
|
...
|
|
LL | fn main() {}
|
|
| ---- the inner attribute doesn't annotate this function
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
LL - #![bench]
|
|
LL + #[bench]
|
|
|
|
|
|
|
error: `global_allocator` attribute cannot be used at crate level
|
|
--> $DIR/issue-36617.rs:13:1
|
|
|
|
|
LL | #![global_allocator]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
...
|
|
LL | fn main() {}
|
|
| ---- the inner attribute doesn't annotate this function
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
LL - #![global_allocator]
|
|
LL + #[global_allocator]
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
|
|