]> git.lizzy.rs Git - rust.git/commitdiff
Add a test for unknown features
authorvarkor <github@varkor.com>
Mon, 23 Jul 2018 12:06:32 +0000 (13:06 +0100)
committervarkor <github@varkor.com>
Sun, 5 Aug 2018 14:54:49 +0000 (15:54 +0100)
src/test/ui/feature-gate/unknown-feature.rs [new file with mode: 0644]
src/test/ui/feature-gate/unknown-feature.stderr [new file with mode: 0644]

diff --git a/src/test/ui/feature-gate/unknown-feature.rs b/src/test/ui/feature-gate/unknown-feature.rs
new file mode 100644 (file)
index 0000000..4101faf
--- /dev/null
@@ -0,0 +1,15 @@
+// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+#![deny(unknown_features)]
+
+#![feature(unknown_rust_feature)] //~ ERROR unknown feature
+
+fn main() {}
diff --git a/src/test/ui/feature-gate/unknown-feature.stderr b/src/test/ui/feature-gate/unknown-feature.stderr
new file mode 100644 (file)
index 0000000..392d918
--- /dev/null
@@ -0,0 +1,14 @@
+error: unknown feature `unknown_rust_feature`
+  --> $DIR/unknown-feature.rs:13:12
+   |
+LL | #![feature(unknown_rust_feature)] //~ ERROR unknown feature
+   |            ^^^^^^^^^^^^^^^^^^^^
+   |
+note: lint level defined here
+  --> $DIR/unknown-feature.rs:11:9
+   |
+LL | #![deny(unknown_features)]
+   |         ^^^^^^^^^^^^^^^^
+
+error: aborting due to previous error
+