You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
= note: this error originates in the macro `core::include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
26
58
27
59
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
28
60
--> $DIR/fs_macros.rs:16:18
29
61
|
30
62
LL | const _E: &str = indirect!(include_str);
31
63
| ^^^^^^^^^^^^^^^^^^^^^^
32
64
65
+
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
66
+
--> $DIR/fs_macros.rs:12:9
67
+
|
68
+
LL | $callme!("fs_macros_included_file.txt")
69
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
70
+
...
71
+
LL | const _E: &str = indirect!(include_str);
72
+
| ---------------------- in this macro invocation
73
+
|
74
+
= note: this error originates in the macro `include_str` which comes from the expansion of the macro `indirect` (in Nightly builds, run with -Z macro-backtrace for more info)
75
+
33
76
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
34
77
--> $DIR/fs_macros.rs:17:19
35
78
|
36
79
LL | const _F: &[u8] = indirect!(include_bytes);
37
80
| ^^^^^^^^^^^^^^^^^^^^^^^^
38
81
82
+
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
83
+
--> $DIR/fs_macros.rs:12:9
84
+
|
85
+
LL | $callme!("fs_macros_included_file.txt")
86
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
87
+
...
88
+
LL | const _F: &[u8] = indirect!(include_bytes);
89
+
| ------------------------ in this macro invocation
90
+
|
91
+
= note: this error originates in the macro `include_bytes` which comes from the expansion of the macro `indirect` (in Nightly builds, run with -Z macro-backtrace for more info)
92
+
39
93
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
40
94
--> $DIR/fs_macros.rs:31:18
41
95
|
42
96
LL | const _G: &str = in_macro!();
43
97
| ^^^^^^^^^^^
44
98
99
+
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
100
+
--> $DIR/fs_macros.rs:21:9
101
+
|
102
+
LL | include_str!("fs_macros_included_file.txt")
103
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
104
+
...
105
+
LL | const _G: &str = in_macro!();
106
+
| ----------- in this macro invocation
107
+
|
108
+
= note: this error originates in the macro `include_str` which comes from the expansion of the macro `in_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
109
+
110
+
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
| ------------------------------------------------------- in this macro invocation
152
+
|
153
+
= note: this error originates in the macro `include_bytes` which comes from the expansion of the macro `in_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
154
+
155
+
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
| ------------------------------------------------ in this macro invocation
183
+
|
184
+
= note: this error originates in the macro `sneaky` which comes from the expansion of the macro `in_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
185
+
75
186
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
76
187
--> $DIR/fs_macros.rs:41:21
77
188
|
78
189
LL | format!("{:?}", in_macro!())
79
190
| ^^^^^^^^^^^
80
191
81
-
error: aborting due to 13 previous errors
192
+
error: the `include_str`, `include_bytes`, and `include` macros are forbidden in PL/Rust
193
+
--> $DIR/fs_macros.rs:21:9
194
+
|
195
+
LL | include_str!("fs_macros_included_file.txt")
196
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
197
+
...
198
+
LL | format!("{:?}", in_macro!())
199
+
| ----------- in this macro invocation
200
+
|
201
+
= note: this error originates in the macro `include_str` which comes from the expansion of the macro `in_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
0 commit comments