summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/allow-features-empty.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/feature-gates/allow-features-empty.stderr')
-rw-r--r--src/test/ui/feature-gates/allow-features-empty.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/feature-gates/allow-features-empty.stderr b/src/test/ui/feature-gates/allow-features-empty.stderr
new file mode 100644
index 000000000..f88b3ea0a
--- /dev/null
+++ b/src/test/ui/feature-gates/allow-features-empty.stderr
@@ -0,0 +1,15 @@
+error[E0725]: the feature `lang_items` is not in the list of allowed features
+ --> $DIR/allow-features-empty.rs:4:12
+ |
+LL | #![feature(lang_items)]
+ | ^^^^^^^^^^
+
+error[E0725]: the feature `unknown_stdlib_feature` is not in the list of allowed features
+ --> $DIR/allow-features-empty.rs:6:12
+ |
+LL | #![feature(unknown_stdlib_feature)]
+ | ^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0725`.