summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-2091-track-caller/error-with-naked.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rfc-2091-track-caller/error-with-naked.stderr')
-rw-r--r--tests/ui/rfc-2091-track-caller/error-with-naked.stderr28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/ui/rfc-2091-track-caller/error-with-naked.stderr b/tests/ui/rfc-2091-track-caller/error-with-naked.stderr
deleted file mode 100644
index 3f7d0df42..000000000
--- a/tests/ui/rfc-2091-track-caller/error-with-naked.stderr
+++ /dev/null
@@ -1,28 +0,0 @@
-error[E0736]: cannot use `#[track_caller]` with `#[naked]`
- --> $DIR/error-with-naked.rs:6:1
- |
-LL | #[track_caller]
- | ^^^^^^^^^^^^^^^
-
-error[E0736]: cannot use `#[track_caller]` with `#[naked]`
- --> $DIR/error-with-naked.rs:16:5
- |
-LL | #[track_caller]
- | ^^^^^^^^^^^^^^^
-
-error[E0737]: `#[track_caller]` requires Rust ABI
- --> $DIR/error-with-naked.rs:6:1
- |
-LL | #[track_caller]
- | ^^^^^^^^^^^^^^^
-
-error[E0737]: `#[track_caller]` requires Rust ABI
- --> $DIR/error-with-naked.rs:16:5
- |
-LL | #[track_caller]
- | ^^^^^^^^^^^^^^^
-
-error: aborting due to 4 previous errors
-
-Some errors have detailed explanations: E0736, E0737.
-For more information about an error, try `rustc --explain E0736`.