rust/tests/ui/resolve/use_suggestion_placement.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
450 B
Rust
Raw Normal View History

//@ 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 {
#[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
}