diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2024-12-10 20:16:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-10 20:16:00 +0100 |
| commit | 5bd9602e33116597bafda3c405e1d86801451c60 (patch) | |
| tree | 18c8cd8e89946c73497eb3951a4bff8b7ff66730 | |
| parent | 33c245b9e98bc91e18ea1c5033824f4c6f92766f (diff) | |
| parent | bab1fcb30c39538618dc6b4bea43f621b64f6f92 (diff) | |
| download | rust-5bd9602e33116597bafda3c405e1d86801451c60.tar.gz rust-5bd9602e33116597bafda3c405e1d86801451c60.zip | |
Rollup merge of #133583 - tbu-:pr_fix_typo2, r=compiler-errors
Fix type (exit → exist)
| -rw-r--r-- | tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.rs | 2 | ||||
| -rw-r--r-- | tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.stderr | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.rs b/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.rs index bcf6dda7a44..057242246f0 100644 --- a/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.rs +++ b/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.rs @@ -1,7 +1,7 @@ // Tests that failing to run dlltool will raise an error. //@ needs-dlltool -//@ compile-flags: --crate-type lib --emit link -Cdlltool=does_not_exit.exe +//@ compile-flags: --crate-type lib --emit link -Cdlltool=does_not_exist.exe #[link(name = "foo", kind = "raw-dylib")] extern "C" { fn f(x: i32); diff --git a/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.stderr b/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.stderr index 9dbeee49f53..4bbad9b30a7 100644 --- a/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.stderr +++ b/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.stderr @@ -1,4 +1,4 @@ -error: Error calling dlltool 'does_not_exit.exe': program not found +error: Error calling dlltool 'does_not_exist.exe': program not found error: aborting due to 1 previous error |
