]> git.lizzy.rs Git - rust.git/blob - src/test/ui/shadowed/shadowed-trait-methods.stderr
e05da17983f83064c62637df704cf32a9fc2a8c1
[rust.git] / src / test / ui / shadowed / shadowed-trait-methods.stderr
1 error[E0599]: no method named `f` found for type `()` in the current scope
2   --> $DIR/shadowed-trait-methods.rs:13:8
3    |
4 LL |     ().f()
5    |        ^
6    |
7    = help: items from traits can only be used if the trait is in scope
8 help: the following trait is implemented but not in scope, perhaps add a `use` for it:
9    |
10 LL | use foo::T;
11    |
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0599`.