rust/tests/ui/issues/issue-19129-2.rs
2023-01-11 09:32:08 +00:00

12 lines
179 B
Rust

// check-pass
#![allow(unused_variables)]
// pretty-expanded FIXME #23616
trait Trait<Input> {
type Output;
fn method(&self, i: Input) -> bool { false }
}
fn main() {}