]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/macros-nonfatal-errors.rs
Convert most code to new inner attribute syntax.
[rust.git] / src / test / compile-fail / macros-nonfatal-errors.rs
1 // Copyright 2014 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 // test that errors in a (selection) of macros don't kill compilation
12 // immediately, so that we get more errors listed at a time.
13
14 #![feature(asm)]
15 #![feature(trace_macros)]
16
17 #[deriving(Default, //~ ERROR
18            Rand, //~ ERROR
19            Zero)] //~ ERROR
20 enum CantDeriveThose {}
21
22 fn main() {
23     doesnt_exist!(); //~ ERROR
24
25     bytes!(invalid); //~ ERROR
26
27     asm!(invalid); //~ ERROR
28
29     concat_idents!("not", "idents"); //~ ERROR
30
31     option_env!(invalid); //~ ERROR
32     env!(invalid); //~ ERROR
33     env!(foo, abr, baz); //~ ERROR
34     env!("RUST_HOPEFULLY_THIS_DOESNT_EXIST"); //~ ERROR
35
36     foo::blah!(); //~ ERROR
37
38     format!(); //~ ERROR
39     format!(invalid); //~ ERROR
40
41     include!(invalid); //~ ERROR
42
43     include_str!(invalid); //~ ERROR
44     include_str!("i'd be quite surprised if a file with this name existed"); //~ ERROR
45     include_bin!(invalid); //~ ERROR
46     include_bin!("i'd be quite surprised if a file with this name existed"); //~ ERROR
47
48     trace_macros!(invalid); //~ ERROR
49 }