]> git.proxmox.com Git - rustc.git/blob - src/test/ui/macros/macros-nonfatal-errors.stderr
New upstream version 1.41.1+dfsg1
[rustc.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 |
49 help: you might be missing a string literal to format with
50 |
51 LL | format!("{}", invalid);
52 | ^^^^^
53
54 error: argument must be a string literal
55 --> $DIR/macros-nonfatal-errors.rs:24:14
56 |
57 LL | include!(invalid);
58 | ^^^^^^^
59
60 error: argument must be a string literal
61 --> $DIR/macros-nonfatal-errors.rs:26:18
62 |
63 LL | include_str!(invalid);
64 | ^^^^^^^
65
66 error: couldn't read $DIR/i'd be quite surprised if a file with this name existed: $FILE_NOT_FOUND_MSG (os error 2)
67 --> $DIR/macros-nonfatal-errors.rs:27:5
68 |
69 LL | include_str!("i'd be quite surprised if a file with this name existed");
70 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
71
72 error: argument must be a string literal
73 --> $DIR/macros-nonfatal-errors.rs:28:20
74 |
75 LL | include_bytes!(invalid);
76 | ^^^^^^^
77
78 error: couldn't read $DIR/i'd be quite surprised if a file with this name existed: $FILE_NOT_FOUND_MSG (os error 2)
79 --> $DIR/macros-nonfatal-errors.rs:29:5
80 |
81 LL | include_bytes!("i'd be quite surprised if a file with this name existed");
82 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
83
84 error: trace_macros! accepts only `true` or `false`
85 --> $DIR/macros-nonfatal-errors.rs:31:5
86 |
87 LL | trace_macros!(invalid);
88 | ^^^^^^^^^^^^^^^^^^^^^^^
89
90 error: aborting due to 14 previous errors
91
92 For more information about this error, try `rustc --explain E0665`.