summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/single_component_path_imports.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/single_component_path_imports.rs')
-rw-r--r--src/tools/clippy/tests/ui/single_component_path_imports.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/single_component_path_imports.rs b/src/tools/clippy/tests/ui/single_component_path_imports.rs
index 9280bab3c..8434bf7ea 100644
--- a/src/tools/clippy/tests/ui/single_component_path_imports.rs
+++ b/src/tools/clippy/tests/ui/single_component_path_imports.rs
@@ -2,9 +2,11 @@
#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
+use core;
use regex;
use serde as edres;
pub use serde;
+use std;
macro_rules! m {
() => {
@@ -17,6 +19,10 @@ fn main() {
// False positive #5154, shouldn't trigger lint.
m!();
+
+ // False positive #10549
+ let _ = self::std::io::stdout();
+ let _ = 0 as self::core::ffi::c_uint;
}
mod hello_mod {