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