]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-19129-2.rs
Merge commit '35d9c6bf256968e1b40e0d554607928bdf9cebea' into sync_cg_clif-2022-02-23
[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() {}