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
449 B
Rust
Raw Normal View History

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