rust/src/test/ui/issues/issue-65230.rs
rhysd 9211beef08 Use E0308 instead of E0495 for checking the error message improvement
because previous test does not cause the expected error message when
`-Z borrowck=mir`.
2021-10-10 00:23:35 +09:00

12 lines
150 B
Rust

trait T0 {}
trait T1: T0 {}
trait T2 {}
impl<'a> T0 for &'a (dyn T2 + 'static) {}
impl T1 for &dyn T2 {}
//~^ ERROR mismatched types
fn main() {}