2024-09-21 07:02:51 +00:00
|
|
|
error[E0119]: conflicting implementations of trait `Database` for type `RootDatabase`
|
|
|
|
|
--> $DIR/cycle-via-builtin-auto-trait-impl.rs:19:1
|
2023-05-19 10:44:38 +02:00
|
|
|
|
|
|
|
|
|
LL | impl<T: RefUnwindSafe> Database for T {
|
2024-09-21 07:02:51 +00:00
|
|
|
| ------------------------------------- first implementation here
|
|
|
|
|
...
|
|
|
|
|
LL | impl Database for RootDatabase {
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `RootDatabase`
|
2023-05-19 10:44:38 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-05-19 10:44:38 +02:00
|
|
|
|
2024-09-21 07:02:51 +00:00
|
|
|
For more information about this error, try `rustc --explain E0119`.
|