2025-01-17 17:00:59 +00:00
|
|
|
//@ revisions: current next
|
|
|
|
|
//@ [next] compile-flags: -Znext-solver
|
|
|
|
|
//@ ignore-compare-mode-next-solver (explicit revisions)
|
|
|
|
|
//@ check-pass
|
2019-02-25 23:54:49 +00:00
|
|
|
|
|
|
|
|
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() {}
|