]> git.proxmox.com Git - rustc.git/blob - src/test/compile-fail/macros-nonfatal-errors.rs
Imported Upstream version 1.0.0~0alpha
[rustc.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, concat_idents)]
16
17 #[derive(Default, //~ ERROR
18 Rand, //~ ERROR
19 Zero)] //~ ERROR
20 enum CantDeriveThose {}
21
22 fn main() {
23 doesnt_exist!(); //~ ERROR
24
25 asm!(invalid); //~ ERROR
26
27 concat_idents!("not", "idents"); //~ ERROR
28
29 option_env!(invalid); //~ ERROR
30 env!(invalid); //~ ERROR
31 env!(foo, abr, baz); //~ ERROR
32 env!("RUST_HOPEFULLY_THIS_DOESNT_EXIST"); //~ ERROR
33
34 foo::blah!(); //~ ERROR
35
36 format!(); //~ ERROR
37 format!(invalid); //~ ERROR
38
39 include!(invalid); //~ ERROR
40
41 include_str!(invalid); //~ ERROR
42 include_str!("i'd be quite surprised if a file with this name existed"); //~ ERROR
43 include_bytes!(invalid); //~ ERROR
44 include_bytes!("i'd be quite surprised if a file with this name existed"); //~ ERROR
45
46 trace_macros!(invalid); //~ ERROR
47 }