File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ fn f() {
143
143
//^^^^^^^^^^^^^ could not convert tokens
144
144
145
145
env!("OUT_DIR");
146
- //^^^^^^^^^^^^^^^ `OUT_DIR` not set, enable "load out dirs from check " to fix
146
+ //^^^^^^^^^^^^^^^ `OUT_DIR` not set, enable "run build scripts " to fix
147
147
148
148
compile_error!("compile_error works");
149
149
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ compile_error works
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ fn good_out_dir_diagnostic() {
233
233
macro_rules! concat { () => {} }
234
234
235
235
include!(concat!(env!("OUT_DIR"), "/out.rs"));
236
- //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `OUT_DIR` not set, enable "load out dirs from check " to fix
236
+ //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `OUT_DIR` not set, enable "run build scripts " to fix
237
237
"# ,
238
238
) ;
239
239
}
Original file line number Diff line number Diff line change @@ -490,7 +490,7 @@ fn env_expand(
490
490
// unnecessary diagnostics for eg. `CARGO_PKG_NAME`.
491
491
if key == "OUT_DIR" {
492
492
err = Some ( mbe:: ExpandError :: Other (
493
- r#"`OUT_DIR` not set, enable "load out dirs from check " to fix"# . into ( ) ,
493
+ r#"`OUT_DIR` not set, enable "run build scripts " to fix"# . into ( ) ,
494
494
) ) ;
495
495
}
496
496
You can’t perform that action at this time.
0 commit comments