]> git.proxmox.com Git - rustc.git/blob - src/test/compile-fail/macros-nonfatal-errors.rs
New upstream version 1.17.0+dfsg1
[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 enum OrDeriveThis {}
19
20 fn main() {
21 asm!(invalid); //~ ERROR
22
23 concat_idents!("not", "idents"); //~ ERROR
24
25 option_env!(invalid); //~ ERROR
26 env!(invalid); //~ ERROR
27 env!(foo, abr, baz); //~ ERROR
28 env!("RUST_HOPEFULLY_THIS_DOESNT_EXIST"); //~ ERROR
29
30 foo::blah!(); //~ ERROR
31
32 format!(invalid); //~ ERROR
33
34 include!(invalid); //~ ERROR
35
36 include_str!(invalid); //~ ERROR
37 include_str!("i'd be quite surprised if a file with this name existed"); //~ ERROR
38 include_bytes!(invalid); //~ ERROR
39 include_bytes!("i'd be quite surprised if a file with this name existed"); //~ ERROR
40
41 trace_macros!(invalid); //~ ERROR
42 }