File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
ide-diagnostics/src/handlers Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -833,7 +833,7 @@ fn env_expand(
833
833
if key. as_str ( ) == "OUT_DIR" {
834
834
err = Some ( ExpandError :: other (
835
835
span,
836
- r#"`OUT_DIR` not set, enable " build scripts" to fix "# ,
836
+ r#"`OUT_DIR` not set, build scripts may have failed to run "# ,
837
837
) ) ;
838
838
}
839
839
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ macro_rules! env { () => {} }
133
133
macro_rules! concat { () => {} }
134
134
135
135
include!(concat!(env!("OUT_DIR"), "/out.rs"));
136
- //^^^^^^^^^ error: `OUT_DIR` not set, enable " build scripts" to fix
136
+ //^^^^^^^^^ error: `OUT_DIR` not set, build scripts may have failed to run
137
137
"# ,
138
138
) ;
139
139
}
@@ -186,7 +186,7 @@ fn main() {
186
186
//^^^^^^^ error: expected string literal
187
187
188
188
env!("OUT_DIR");
189
- //^^^^^^^^^ error: `OUT_DIR` not set, enable " build scripts" to fix
189
+ //^^^^^^^^^ error: `OUT_DIR` not set, build scripts may have failed to run
190
190
191
191
compile_error!("compile_error works");
192
192
//^^^^^^^^^^^^^ error: compile_error works
You can’t perform that action at this time.
0 commit comments