]> git.proxmox.com Git - rustc.git/blame - src/test/ui/regions/issue-26448-1.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / regions / issue-26448-1.rs
CommitLineData
532ac7d7
XL
1// run-pass
2
3pub trait Foo<T> {
4 fn foo(self) -> T;
5}
6
7impl<'a, T> Foo<T> for &'a str where &'a str: Into<T> {
8 fn foo(self) -> T {
9 panic!();
10 }
11}
12
13fn main() {}