2021-05-18 03:39:28 +00:00
|
|
|
//@ run-rustfix
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2017-08-17 09:03:59 +00:00
|
|
|
macro_rules! y {
|
|
|
|
() => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod m {
|
|
|
|
pub const A: i32 = 0;
|
|
|
|
}
|
|
|
|
|
2017-08-31 11:06:53 +00:00
|
|
|
mod foo {
|
2022-03-04 22:14:34 +00:00
|
|
|
#[derive(Debug)]
|
2017-08-31 11:06:53 +00:00
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
// test whether the use suggestion isn't
|
|
|
|
// placed into the expansion of `#[derive(Debug)]
|
2017-11-20 12:13:27 +00:00
|
|
|
type Bar = Path; //~ ERROR cannot find
|
2017-08-31 11:06:53 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 09:03:59 +00:00
|
|
|
fn main() {
|
|
|
|
y!();
|
2017-11-20 12:13:27 +00:00
|
|
|
let _ = A; //~ ERROR cannot find
|
2017-08-17 09:03:59 +00:00
|
|
|
foo();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() {
|
2017-11-20 12:13:27 +00:00
|
|
|
type Dict<K, V> = HashMap<K, V>; //~ ERROR cannot find
|
2017-08-17 09:03:59 +00:00
|
|
|
}
|