From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- .../suggest-path-instead-of-mod-dot-item.rs | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs (limited to 'src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs') diff --git a/src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs b/src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs new file mode 100644 index 000000000..204a27240 --- /dev/null +++ b/src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs @@ -0,0 +1,59 @@ +// Beginners write `mod.item` when they should write `mod::item`. +// This tests that we suggest the latter when we encounter the former. + +pub mod a { + pub const I: i32 = 1; + + pub fn f() -> i32 { 2 } + + pub mod b { + pub const J: i32 = 3; + + pub fn g() -> i32 { 4 } + } +} + +fn h1() -> i32 { + a.I + //~^ ERROR expected value, found module `a` +} + +fn h2() -> i32 { + a.g() + //~^ ERROR expected value, found module `a` +} + +fn h3() -> i32 { + a.b.J + //~^ ERROR expected value, found module `a` +} + +fn h4() -> i32 { + a::b.J + //~^ ERROR expected value, found module `a::b` +} + +fn h5() { + a.b.f(); + //~^ ERROR expected value, found module `a` + let v = Vec::new(); + v.push(a::b); + //~^ ERROR expected value, found module `a::b` +} + +fn h6() -> i32 { + a::b.f() + //~^ ERROR expected value, found module `a::b` +} + +fn h7() { + a::b + //~^ ERROR expected value, found module `a::b` +} + +fn h8() -> i32 { + a::b() + //~^ ERROR expected function, found module `a::b` +} + +fn main() {} -- cgit v1.2.3