diff options
Diffstat (limited to 'tests/ui/feature-gates/feature-gate-abi_unadjusted.stderr')
-rw-r--r-- | tests/ui/feature-gates/feature-gate-abi_unadjusted.stderr | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/feature-gates/feature-gate-abi_unadjusted.stderr b/tests/ui/feature-gates/feature-gate-abi_unadjusted.stderr new file mode 100644 index 000000000..1757befec --- /dev/null +++ b/tests/ui/feature-gates/feature-gate-abi_unadjusted.stderr @@ -0,0 +1,11 @@ +error[E0658]: unadjusted ABI is an implementation detail and perma-unstable + --> $DIR/feature-gate-abi_unadjusted.rs:1:8 + | +LL | extern "unadjusted" fn foo() { + | ^^^^^^^^^^^^ + | + = help: add `#![feature(abi_unadjusted)]` to the crate attributes to enable + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0658`. |