Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/compiletests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ impl Runner {
"-Zunstable-options",
"-Zcrate-attr=no_std",
"-Zcrate-attr=feature(abi_ptx)",
"-Zui-testing",
]
.join(" ")
}
Expand Down
12 changes: 6 additions & 6 deletions tests/compiletests/ui/lang/compile_fail.stderr
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `std`
--> $DIR/compile_fail.rs:5:14
|
5 | let _s = std::fs::File::create("foo.txt");
| ^^^ use of unresolved module or unlinked crate `std`
|
= help: you might be missing a crate named `std`
--> $DIR/compile_fail.rs:5:14
|
LL | let _s = std::fs::File::create("foo.txt");
| ^^^ use of unresolved module or unlinked crate `std`
|
= help: you might be missing a crate named `std`

error: aborting due to 1 previous error

Expand Down
Loading