]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail-fulldeps/proc-macro/resolve-error.rs
Rollup merge of #40057 - GuillaumeGomez:html-issue, r=frewsxcv
[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 macro_rules! FooWithLongNam {
26     () => {}
27 }
28
29 #[derive(FooWithLongNan)]
30 //~^ ERROR cannot find derive macro `FooWithLongNan` in this scope
31 //~^^ HELP did you mean `FooWithLongName`?
32 struct Foo;
33
34 #[attr_proc_macra]
35 //~^ ERROR cannot find attribute macro `attr_proc_macra` in this scope
36 //~^^ HELP did you mean `attr_proc_macro`?
37 struct Bar;
38
39 #[FooWithLongNan]
40 //~^ ERROR cannot find attribute macro `FooWithLongNan` in this scope
41 struct Asdf;
42
43 #[derive(Dlone)]
44 //~^ ERROR cannot find derive macro `Dlone` in this scope
45 //~^^ HELP did you mean `Clone`?
46 struct A;
47
48 #[derive(Dlona)]
49 //~^ ERROR cannot find derive macro `Dlona` in this scope
50 //~^^ HELP did you mean `Clona`?
51 struct B;
52
53 #[derive(attr_proc_macra)]
54 //~^ ERROR cannot find derive macro `attr_proc_macra` in this scope
55 struct C;
56
57 fn main() {
58     FooWithLongNama!();
59     //~^ ERROR cannot find macro `FooWithLongNama!` in this scope
60     //~^^ HELP did you mean `FooWithLongNam!`?
61
62     attr_proc_macra!();
63     //~^ ERROR cannot find macro `attr_proc_macra!` in this scope
64
65     Dlona!();
66     //~^ ERROR cannot find macro `Dlona!` in this scope
67 }