rust/src/test/ui/issues/issue-19129-2.rs
2019-07-03 06:30:28 +09:00

11 lines
216 B
Rust

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