summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs')
-rw-r--r--src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.rs59
1 files changed, 59 insertions, 0 deletions
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() {}