rust/tests/ui/regions/issue-26448-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
179 B
Rust
Raw Normal View History

2019-02-25 23:54:49 +00:00
//@ run-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() {}