rust/tests/ui/traits/deny-builtin-object-impl.next.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
771 B
Plaintext
Raw Normal View History

2023-06-16 23:45:01 +00:00
error[E0277]: the trait bound `dyn NotObject: NotObject` is not satisfied
--> $DIR/deny-builtin-object-impl.rs:19:23
2023-06-16 23:45:01 +00:00
|
LL | test_not_object::<dyn NotObject>();
| ^^^^^^^^^^^^^ the trait `NotObject` is not implemented for `dyn NotObject`
|
help: this trait has no implementations, consider adding one
--> $DIR/deny-builtin-object-impl.rs:11:1
|
LL | trait NotObject {}
| ^^^^^^^^^^^^^^^
2023-06-16 23:45:01 +00:00
note: required by a bound in `test_not_object`
--> $DIR/deny-builtin-object-impl.rs:15:23
2023-06-16 23:45:01 +00:00
|
LL | fn test_not_object<T: NotObject + ?Sized>() {}
| ^^^^^^^^^ required by this bound in `test_not_object`
error: aborting due to 1 previous error
2023-06-16 23:45:01 +00:00
For more information about this error, try `rustc --explain E0277`.