]> git.lizzy.rs Git - rust.git/commitdiff
Fix tidy by adding new feature gate test
authorEsteban Küber <esteban@commure.com>
Sun, 22 Jul 2018 00:35:09 +0000 (17:35 -0700)
committerEsteban Küber <esteban@commure.com>
Sun, 22 Jul 2018 00:58:05 +0000 (17:58 -0700)
src/test/ui/feature-gate-format_args_nl.rs
src/test/ui/feature-gate-format_args_nl.stderr [new file with mode: 0644]

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..b976d57f9c179deec993843d4220ef6610967da2 100644 (file)
@@ -0,0 +1,13 @@
+// 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.
+
+fn main() {
+    format_args_nl!(""); //~ ERROR `format_args_nl` is only for internal language use
+}
diff --git a/src/test/ui/feature-gate-format_args_nl.stderr b/src/test/ui/feature-gate-format_args_nl.stderr
new file mode 100644 (file)
index 0000000..a795356
--- /dev/null
@@ -0,0 +1,11 @@
+error[E0658]: `format_args_nl` is only for internal language use and is subject to change
+  --> $DIR/feature-gate-format_args_nl.rs:12:5
+   |
+LL |     format_args_nl!(""); //~ ERROR `format_args_nl` is only for internal language use
+   |     ^^^^^^^^^^^^^^^^^^^^
+   |
+   = help: add #![feature(format_args_nl)] to the crate attributes to enable
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0658`.