blob: 4d1853a93727e5fb69103aea81966e2a0457741a [file] [log] [blame]
//@ revisions: current next
//@ [next] compile-flags: -Znext-solver
//@ ignore-compare-mode-next-solver (explicit revisions)
//@ check-pass
pub trait Foo<T> {
fn foo(self) -> T;
}
impl<'a, T> Foo<T> for &'a str where &'a str: Into<T> {
fn foo(self) -> T {
panic!();
}
}
fn main() {}