]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0411.stderr
Rollup merge of #106766 - GuillaumeGomez:rm-stripper-dead-code, r=notriddle
[rust.git] / tests / ui / error-codes / E0411.stderr
1 error[E0411]: cannot find type `Self` in this scope
2   --> $DIR/E0411.rs:2:6
3    |
4 LL | fn main() {
5    |    ---- `Self` not allowed in a function
6 LL |     <Self>::foo;
7    |      ^^^^ `Self` is only available in impls, traits, and type definitions
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0411`.