]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail-fulldeps/proc-macro/resolve-error.rs
Rollup merge of #39777 - mina86:gib, r=steveklabnik
[rust.git] / src / test / compile-fail-fulldeps / proc-macro / resolve-error.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // aux-build:derive-foo.rs
12 // aux-build:derive-clona.rs
13 // aux-build:attr_proc_macro.rs
14
15 #![feature(proc_macro)]
16
17 #[macro_use]
18 extern crate derive_foo;
19 #[macro_use]
20 extern crate derive_clona;
21 extern crate attr_proc_macro;
22
23 use attr_proc_macro::attr_proc_macro;
24
25 #[derive(FooWithLongNam)]
26 //~^ ERROR cannot find derive macro `FooWithLongNam` in this scope
27 //~^^ HELP did you mean `FooWithLongName`?
28 struct Foo;
29
30 #[attr_proc_macra]
31 //~^ ERROR cannot find attribute macro `attr_proc_macra` in this scope
32 struct Bar;
33
34 #[derive(Dlone)]
35 //~^ ERROR cannot find derive macro `Dlone` in this scope
36 //~^^ HELP did you mean `Clone`?
37 struct A;
38
39 #[derive(Dlona)]
40 //~^ ERROR cannot find derive macro `Dlona` in this scope
41 //~^^ HELP did you mean `Clona`?
42 struct B;
43
44 fn main() {}