13 lines
520 B
Plaintext
13 lines
520 B
Plaintext
error[E0599]: no function or associated item named `method` found for struct `B<for<'a> fn(&'a ())>` in the current scope
|
|
--> $DIR/receiver-equality.rs:12:30
|
|
|
|
|
LL | struct B<T>(T);
|
|
| ----------- function or associated item `method` not found for this struct
|
|
...
|
|
LL | B::<for<'a> fn(&'a ())>::method(y);
|
|
| ^^^^^^ function or associated item not found in `B<fn(&())>`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|