1 #[derive(
2     core::RustcDecodable, //~ ERROR could not find `RustcDecodable` in `core`
3                           //~| ERROR could not find `RustcDecodable` in `core`
4     core::RustcDecodable, //~ ERROR could not find `RustcDecodable` in `core`
5                           //~| ERROR could not find `RustcDecodable` in `core`
6 )]
7 #[core::bench] //~ ERROR could not find `bench` in `core`
8 #[core::global_allocator] //~ ERROR could not find `global_allocator` in `core`
9 #[core::test_case] //~ ERROR could not find `test_case` in `core`
10 #[core::test] //~ ERROR could not find `test` in `core`
11 struct Core;
12 
13 #[derive(
14     std::RustcDecodable, //~ ERROR could not find `RustcDecodable` in `std`
15                          //~| ERROR could not find `RustcDecodable` in `std`
16     std::RustcDecodable, //~ ERROR could not find `RustcDecodable` in `std`
17                          //~| ERROR could not find `RustcDecodable` in `std`
18 )]
19 #[std::bench] //~ ERROR could not find `bench` in `std`
20 #[std::global_allocator] //~ ERROR could not find `global_allocator` in `std`
21 #[std::test_case] //~ ERROR could not find `test_case` in `std`
22 #[std::test] //~ ERROR could not find `test` in `std`
23 struct Std;
24 
main()25 fn main() {}
26