mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
10 lines
348 B
Plaintext
10 lines
348 B
Plaintext
error[E0277]: the trait bound `(): Project` is not satisfied
|
|
--> $DIR/bad-projection.rs:14:17
|
|
|
|
|
LL | pub fn uwu() -> <() as Project>::Assoc {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ the trait `Project` is not implemented for `()`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|