]> git.lizzy.rs Git - rust.git/blob - src/test/ui/e0119/issue-28981.stderr
76ff88d6cc62346b52412741cd1026668d7b5627
[rust.git] / src / test / ui / e0119 / issue-28981.stderr
1 error[E0119]: conflicting implementations of trait `std::ops::Deref` for type `&_`:
2   --> $DIR/issue-28981.rs:15:1
3    |
4 LL | impl<Foo> Deref for Foo { } //~ ERROR must be used
5    | ^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: conflicting implementation in crate `core`:
8            - impl<T> std::ops::Deref for &T
9              where T: ?Sized;
10
11 error[E0210]: type parameter `Foo` must be used as the type parameter for some local type (e.g. `MyStruct<Foo>`)
12   --> $DIR/issue-28981.rs:15:1
13    |
14 LL | impl<Foo> Deref for Foo { } //~ ERROR must be used
15    | ^^^^^^^^^^^^^^^^^^^^^^^ type parameter `Foo` must be used as the type parameter for some local type
16    |
17    = note: only traits defined in the current crate can be implemented for a type parameter
18
19 error: aborting due to 2 previous errors
20
21 Some errors occurred: E0119, E0210.
22 For more information about an error, try `rustc --explain E0119`.