summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-inherent-types/issue-109299-1.stderr
blob: dc59b56ee207dc1fec88cca04487dd9af07e481a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0220]: associated type `Cursor` not found for `Lexer<T>` in the current scope
  --> $DIR/issue-109299-1.rs:10:40
   |
LL | struct Lexer<T>(T);
   | --------------- associated item `Cursor` not found for this struct
...
LL | type X = impl for<T> Fn() -> Lexer<T>::Cursor;
   |                                        ^^^^^^ associated item not found in `Lexer<T>`
   |
   = note: the associated type was found for
           - `Lexer<i32>`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0220`.