]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macros-nonfatal-errors.stderr
Auto merge of #61741 - Centril:rollup-fgro5kz, r=Centril
[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:9:10
3    |
4 LL | #[derive(Default)]
5    |          ^^^^^^^
6
7 error: inline assembly must be a string literal
8   --> $DIR/macros-nonfatal-errors.rs:13:10
9    |
10 LL |     asm!(invalid);
11    |          ^^^^^^^
12
13 error: concat_idents! requires ident args.
14   --> $DIR/macros-nonfatal-errors.rs:15:5
15    |
16 LL |     concat_idents!("not", "idents");
17    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
19 error: argument must be a string literal
20   --> $DIR/macros-nonfatal-errors.rs:17:17
21    |
22 LL |     option_env!(invalid);
23    |                 ^^^^^^^
24
25 error: expected string literal
26   --> $DIR/macros-nonfatal-errors.rs:18:10
27    |
28 LL |     env!(invalid);
29    |          ^^^^^^^
30
31 error: expected string literal
32   --> $DIR/macros-nonfatal-errors.rs:19:10
33    |
34 LL |     env!(foo, abr, baz);
35    |          ^^^
36
37 error: environment variable `RUST_HOPEFULLY_THIS_DOESNT_EXIST` not defined
38   --> $DIR/macros-nonfatal-errors.rs:20:5
39    |
40 LL |     env!("RUST_HOPEFULLY_THIS_DOESNT_EXIST");
41    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42
43 error: format argument must be a string literal
44   --> $DIR/macros-nonfatal-errors.rs:22:13
45    |
46 LL |     format!(invalid);
47    |             ^^^^^^^
48 help: you might be missing a string literal to format with
49    |
50 LL |     format!("{}", invalid);
51    |             ^^^^^
52
53 error: argument must be a string literal
54   --> $DIR/macros-nonfatal-errors.rs:24:14
55    |
56 LL |     include!(invalid);
57    |              ^^^^^^^
58
59 error: argument must be a string literal
60   --> $DIR/macros-nonfatal-errors.rs:26:18
61    |
62 LL |     include_str!(invalid);
63    |                  ^^^^^^^
64
65 error: couldn't read $DIR/i'd be quite surprised if a file with this name existed: $FILE_NOT_FOUND_MSG (os error 2)
66   --> $DIR/macros-nonfatal-errors.rs:27:5
67    |
68 LL |     include_str!("i'd be quite surprised if a file with this name existed");
69    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
70
71 error: argument must be a string literal
72   --> $DIR/macros-nonfatal-errors.rs:28:20
73    |
74 LL |     include_bytes!(invalid);
75    |                    ^^^^^^^
76
77 error: couldn't read $DIR/i'd be quite surprised if a file with this name existed: $FILE_NOT_FOUND_MSG (os error 2)
78   --> $DIR/macros-nonfatal-errors.rs:29:5
79    |
80 LL |     include_bytes!("i'd be quite surprised if a file with this name existed");
81    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
82
83 error: trace_macros! accepts only `true` or `false`
84   --> $DIR/macros-nonfatal-errors.rs:31:5
85    |
86 LL |     trace_macros!(invalid);
87    |     ^^^^^^^^^^^^^^^^^^^^^^^
88
89 error: aborting due to 14 previous errors
90