blob: 30c64573a15329e3dee411ee2cb50a76df8ad60d [file] [log] [blame]
// 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() {}