Skip to content

Commit

Permalink
Update ui test suite to nightly-2024-10-14
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Oct 14, 2024
1 parent b8a555a commit eb4b038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ui/bare-trait-object.stderr
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
error[E0782]: trait objects must include the `dyn` keyword
error[E0782]: expected a type, found a trait
--> tests/ui/bare-trait-object.rs:11:16
|
11 | impl Trait for Send + Sync {
| ^^^^^^^^^^^
|
help: add `dyn` keyword before this trait
help: you can add the `dyn` keyword if you want a trait object
|
11 | impl Trait for dyn Send + Sync {
| +++
Expand Down

0 comments on commit eb4b038

Please sign in to comment.