mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
365 B
Plaintext
15 lines
365 B
Plaintext
error[E0425]: cannot find function, tuple struct or tuple variant `B` in this scope
|
|
--> $DIR/issue-26545.rs:7:9
|
|
|
|
|
LL | B(());
|
|
| ^ not found in this scope
|
|
|
|
|
help: consider importing this tuple struct
|
|
|
|
|
LL | use foo::B;
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|