]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-19129-2.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.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() {}