From 118b0f9a02113fe7462ca5c94780912919dbce02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esteban=20K=C3=BCber?= Date: Sat, 21 Jul 2018 17:35:09 -0700 Subject: [PATCH] Fix tidy by adding new feature gate test --- src/test/ui/feature-gate-format_args_nl.rs | 13 +++++++++++++ src/test/ui/feature-gate-format_args_nl.stderr | 11 +++++++++++ 2 files changed, 24 insertions(+) create mode 100644 src/test/ui/feature-gate-format_args_nl.stderr diff --git a/src/test/ui/feature-gate-format_args_nl.rs b/src/test/ui/feature-gate-format_args_nl.rs index e69de29bb2d1..b976d57f9c17 100644 --- a/src/test/ui/feature-gate-format_args_nl.rs +++ b/src/test/ui/feature-gate-format_args_nl.rs @@ -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 or the MIT license +// , 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 index 000000000000..a79535641a62 --- /dev/null +++ b/src/test/ui/feature-gate-format_args_nl.stderr @@ -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`.