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