rust/tests/ui/dropck/dropck-only-error-async.stderr
Matthew Jasper 87e5969572 Update tests for dropck normalization errors
Takes crash tests from #135039, #103899, #91985 and #105299 and turns them into ui tests
2025-02-17 11:33:07 +00:00

16 lines
562 B
Plaintext

error[E0277]: the trait bound `User: AuthUser` is not satisfied
--> $DIR/dropck-only-error-async.rs:28:5
|
LL | auth: AuthSession<User::AuthnBackend>,
| ^^^^ the trait `AuthUser` is not implemented for `User`
error[E0277]: the trait bound `User: AuthUser` is not satisfied
--> $DIR/dropck-only-error-async.rs:28:5
|
LL | auth: AuthSession<User::AuthnBackend>,
| ^^^^ the trait `AuthUser` is not implemented for `User`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0277`.