]> git.proxmox.com Git - rustc.git/blob - tests/ui/resolve/issue-5927.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / resolve / issue-5927.stderr
1 error[E0531]: cannot find tuple struct or tuple variant `x` in this scope
2 --> $DIR/issue-5927.rs:3:9
3 |
4 LL | x(1) => x(1)
5 | ^ not found in this scope
6
7 error[E0425]: cannot find function `x` in this scope
8 --> $DIR/issue-5927.rs:3:17
9 |
10 LL | x(1) => x(1)
11 | ^ not found in this scope
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0425, E0531.
16 For more information about an error, try `rustc --explain E0425`.