rust/tests/ui/specialization/dont-drop-upcast-candidate.rs
2024-05-30 19:45:59 -04:00

14 lines
253 B
Rust

#![feature(unsize)]
use std::marker::Unsize;
use std::ops::Deref;
trait Foo: Bar {}
trait Bar {}
impl<T> Bar for T where dyn Foo: Unsize<dyn Bar> {}
impl Bar for () {}
//~^ ERROR conflicting implementations of trait `Bar` for type `()`
fn main() {}