about summary refs log tree commit diff
path: root/tests/ui/resolve/issue-101749-2.rs
blob: 636ff07c71ceb24076052d0ed794cf2e44576aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct Rectangle {
    width: i32,
    height: i32,
}
impl Rectangle {
    fn new(width: i32, height: i32) -> Self {
        Self { width, height }
    }
}

fn main() {
    let rect = Rectangle::new(3, 4);
    // `area` is not implemented for `Rectangle`, so this should not suggest
    let _ = rect::area();
    //~^ ERROR failed to resolve: use of unresolved module or unlinked crate `rect`
}