]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macros-nonfatal-errors.stderr
Ignore test that fails on stage1
[rust.git] / src / test / ui / macros / macros-nonfatal-errors.stderr
1 error[E0665]: `Default` cannot be derived for enums, only structs
2   --> $DIR/macros-nonfatal-errors.rs:21:10
3    |
4 LL | #[derive(Default)] //~ ERROR
5    |          ^^^^^^^
6
7 error: inline assembly must be a string literal
8   --> $DIR/macros-nonfatal-errors.rs:25:10
9    |
10 LL |     asm!(invalid); //~ ERROR
11    |          ^^^^^^^
12
13 error: concat_idents! requires ident args.
14   --> $DIR/macros-nonfatal-errors.rs:27:5
15    |
16 LL |     concat_idents!("not", "idents"); //~ ERROR
17    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
19 error: argument must be a string literal
20   --> $DIR/macros-nonfatal-errors.rs:29:17
21    |
22 LL |     option_env!(invalid); //~ ERROR
23    |                 ^^^^^^^
24
25 error: expected string literal
26   --> $DIR/macros-nonfatal-errors.rs:30:10
27    |
28 LL |     env!(invalid); //~ ERROR
29    |          ^^^^^^^
30
31 error: expected string literal
32   --> $DIR/macros-nonfatal-errors.rs:31:10
33    |
34 LL |     env!(foo, abr, baz); //~ ERROR
35    |          ^^^
36
37 error: environment variable `RUST_HOPEFULLY_THIS_DOESNT_EXIST` not defined
38   --> $DIR/macros-nonfatal-errors.rs:32:5
39    |
40 LL |     env!("RUST_HOPEFULLY_THIS_DOESNT_EXIST"); //~ ERROR
41    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42
43 error[E0658]: non-ident macro paths are experimental (see issue #35896)
44   --> $DIR/macros-nonfatal-errors.rs:34:5
45    |
46 LL |     foo::blah!(); //~ ERROR
47    |     ^^^^^^^^^
48    |
49    = help: add #![feature(use_extern_macros)] to the crate attributes to enable
50
51 error: format argument must be a string literal
52   --> $DIR/macros-nonfatal-errors.rs:36:13
53    |
54 LL |     format!(invalid); //~ ERROR
55    |             ^^^^^^^
56 help: you might be missing a string literal to format with
57    |
58 LL |     format!("{}", invalid); //~ ERROR
59    |             ^^^^^
60
61 error: argument must be a string literal
62   --> $DIR/macros-nonfatal-errors.rs:38:14
63    |
64 LL |     include!(invalid); //~ ERROR
65    |              ^^^^^^^
66
67 error: argument must be a string literal
68   --> $DIR/macros-nonfatal-errors.rs:40:18
69    |
70 LL |     include_str!(invalid); //~ ERROR
71    |                  ^^^^^^^
72
73 error: couldn't read $DIR/i'd be quite surprised if a file with this name existed: No such file or directory (os error 2)
74   --> $DIR/macros-nonfatal-errors.rs:41:5
75    |
76 LL |     include_str!("i'd be quite surprised if a file with this name existed"); //~ ERROR
77    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
78
79 error: argument must be a string literal
80   --> $DIR/macros-nonfatal-errors.rs:42:20
81    |
82 LL |     include_bytes!(invalid); //~ ERROR
83    |                    ^^^^^^^
84
85 error: couldn't read $DIR/i'd be quite surprised if a file with this name existed: No such file or directory (os error 2)
86   --> $DIR/macros-nonfatal-errors.rs:43:5
87    |
88 LL |     include_bytes!("i'd be quite surprised if a file with this name existed"); //~ ERROR
89    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
90
91 error: trace_macros! accepts only `true` or `false`
92   --> $DIR/macros-nonfatal-errors.rs:45:5
93    |
94 LL |     trace_macros!(invalid); //~ ERROR
95    |     ^^^^^^^^^^^^^^^^^^^^^^^
96
97 error: aborting due to 15 previous errors
98
99 Some errors occurred: E0658, E0665.
100 For more information about an error, try `rustc --explain E0658`.