Files
rust/tests/ui/traits/const-traits/ice-124857-combine-effect-const-infer-vars.stderr

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

13 lines
477 B
Plaintext
Raw Normal View History

error[E0119]: conflicting implementations of trait `Foo` for type `i32`
2024-10-30 18:03:44 +00:00
--> $DIR/ice-124857-combine-effect-const-infer-vars.rs:10:1
|
LL | impl const Foo for i32 {}
| ---------------------- first implementation here
LL |
LL | impl<T> const Foo for T where T: ~const Foo {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `i32`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0119`.