summaryrefslogtreecommitdiffstats
path: root/tests/ui/never_type/never-from-impl-is-reserved.stderr
blob: f9f7c787ecbc3bc9e4867d560c843334ce061c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0119]: conflicting implementations of trait `MyTrait` for type `MyFoo`
  --> $DIR/never-from-impl-is-reserved.rs:10:1
   |
LL | impl MyTrait for MyFoo {}
   | ---------------------- first implementation here
LL | // This will conflict with the first impl if we impl `for<T> T: From<!>`.
LL | impl<T> MyTrait for T where T: From<!> {}
   | ^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `MyFoo`
   |
   = note: permitting this impl would forbid us from adding `impl<T> From<!> for T` later; see rust-lang/rust#64715 for details

error: aborting due to previous error

For more information about this error, try `rustc --explain E0119`.