]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-19129-2.rs
Auto merge of #107044 - cuviper:more-llvm-ci, r=Mark-Simulacrum
[rust.git] / tests / 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() {}