From cf2dff2b1e3fa55fa5415d524200070d0d7aacfe Mon Sep 17 00:00:00 2001 From: Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> Date: Thu, 5 Jan 2023 09:13:28 +0100 Subject: Move /src/test to /tests --- tests/ui/lint/issue-83477.rs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/ui/lint/issue-83477.rs (limited to 'tests/ui/lint/issue-83477.rs') diff --git a/tests/ui/lint/issue-83477.rs b/tests/ui/lint/issue-83477.rs new file mode 100644 index 00000000000..4262a28799d --- /dev/null +++ b/tests/ui/lint/issue-83477.rs @@ -0,0 +1,16 @@ +// compile-flags: -Zunstable-options +// check-pass +#![warn(rustc::internal)] + +#[allow(rustc::foo::bar::default_hash_types)] +//~^ WARN unknown lint: `rustc::foo::bar::default_hash_types` +//~| HELP did you mean +//~| SUGGESTION rustc::default_hash_types +#[allow(rustc::foo::default_hash_types)] +//~^ WARN unknown lint: `rustc::foo::default_hash_types` +//~| HELP did you mean +//~| SUGGESTION rustc::default_hash_types +fn main() { + let _ = std::collections::HashMap::::new(); + //~^ WARN prefer `FxHashMap` over `HashMap`, it has better performance +} -- cgit v1.2.1