1
1
error[E0665]: `Default` cannot be derived for enums, only structs
2
- --> $DIR/macros-nonfatal-errors.rs:20 :10
2
+ --> $DIR/macros-nonfatal-errors.rs:9 :10
3
3
|
4
4
LL | #[derive(Default)] //~ ERROR
5
5
| ^^^^^^^
6
6
7
7
error: inline assembly must be a string literal
8
- --> $DIR/macros-nonfatal-errors.rs:24 :10
8
+ --> $DIR/macros-nonfatal-errors.rs:13 :10
9
9
|
10
10
LL | asm!(invalid); //~ ERROR
11
11
| ^^^^^^^
12
12
13
13
error: concat_idents! requires ident args.
14
- --> $DIR/macros-nonfatal-errors.rs:26 :5
14
+ --> $DIR/macros-nonfatal-errors.rs:15 :5
15
15
|
16
16
LL | concat_idents!("not", "idents"); //~ ERROR
17
17
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
18
19
19
error: argument must be a string literal
20
- --> $DIR/macros-nonfatal-errors.rs:28 :17
20
+ --> $DIR/macros-nonfatal-errors.rs:17 :17
21
21
|
22
22
LL | option_env!(invalid); //~ ERROR
23
23
| ^^^^^^^
24
24
25
25
error: expected string literal
26
- --> $DIR/macros-nonfatal-errors.rs:29 :10
26
+ --> $DIR/macros-nonfatal-errors.rs:18 :10
27
27
|
28
28
LL | env!(invalid); //~ ERROR
29
29
| ^^^^^^^
30
30
31
31
error: expected string literal
32
- --> $DIR/macros-nonfatal-errors.rs:30 :10
32
+ --> $DIR/macros-nonfatal-errors.rs:19 :10
33
33
|
34
34
LL | env!(foo, abr, baz); //~ ERROR
35
35
| ^^^
36
36
37
37
error: environment variable `RUST_HOPEFULLY_THIS_DOESNT_EXIST` not defined
38
- --> $DIR/macros-nonfatal-errors.rs:31 :5
38
+ --> $DIR/macros-nonfatal-errors.rs:20 :5
39
39
|
40
40
LL | env!("RUST_HOPEFULLY_THIS_DOESNT_EXIST"); //~ ERROR
41
41
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42
42
43
43
error: format argument must be a string literal
44
- --> $DIR/macros-nonfatal-errors.rs:33 :13
44
+ --> $DIR/macros-nonfatal-errors.rs:22 :13
45
45
|
46
46
LL | format!(invalid); //~ ERROR
47
47
| ^^^^^^^
@@ -51,37 +51,37 @@ LL | format!("{}", invalid); //~ ERROR
51
51
| ^^^^^
52
52
53
53
error: argument must be a string literal
54
- --> $DIR/macros-nonfatal-errors.rs:35 :14
54
+ --> $DIR/macros-nonfatal-errors.rs:24 :14
55
55
|
56
56
LL | include!(invalid); //~ ERROR
57
57
| ^^^^^^^
58
58
59
59
error: argument must be a string literal
60
- --> $DIR/macros-nonfatal-errors.rs:37 :18
60
+ --> $DIR/macros-nonfatal-errors.rs:26 :18
61
61
|
62
62
LL | include_str!(invalid); //~ ERROR
63
63
| ^^^^^^^
64
64
65
- 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)
66
- --> $DIR/macros-nonfatal-errors.rs:38 :5
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
67
|
68
68
LL | include_str!("i'd be quite surprised if a file with this name existed"); //~ ERROR
69
69
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
70
70
71
71
error: argument must be a string literal
72
- --> $DIR/macros-nonfatal-errors.rs:39 :20
72
+ --> $DIR/macros-nonfatal-errors.rs:28 :20
73
73
|
74
74
LL | include_bytes!(invalid); //~ ERROR
75
75
| ^^^^^^^
76
76
77
- 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)
78
- --> $DIR/macros-nonfatal-errors.rs:40 :5
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
79
|
80
80
LL | include_bytes!("i'd be quite surprised if a file with this name existed"); //~ ERROR
81
81
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
82
82
83
83
error: trace_macros! accepts only `true` or `false`
84
- --> $DIR/macros-nonfatal-errors.rs:42 :5
84
+ --> $DIR/macros-nonfatal-errors.rs:31 :5
85
85
|
86
86
LL | trace_macros!(invalid); //~ ERROR
87
87
| ^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments