diff options
Diffstat (limited to 'tests/ui/rfc-2091-track-caller/error-with-invalid-abi.rs')
-rw-r--r-- | tests/ui/rfc-2091-track-caller/error-with-invalid-abi.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/ui/rfc-2091-track-caller/error-with-invalid-abi.rs b/tests/ui/rfc-2091-track-caller/error-with-invalid-abi.rs deleted file mode 100644 index 074e1ceb7..000000000 --- a/tests/ui/rfc-2091-track-caller/error-with-invalid-abi.rs +++ /dev/null @@ -1,11 +0,0 @@ -#[track_caller] -extern "C" fn f() {} -//~^^ ERROR `#[track_caller]` requires Rust ABI - -extern "C" { - #[track_caller] - fn g(); - //~^^ ERROR `#[track_caller]` requires Rust ABI -} - -fn main() {} |