]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-19129-2.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-19129-2.rs
1 // check-pass
2 #![allow(unused_variables)]
3 // pretty-expanded FIXME #23616
4
5 trait Trait<Input> {
6 type Output;
7
8 fn method(&self, i: Input) -> bool { false }
9 }
10
11 fn main() {}