2019-11-03 18:00:00 -06:00
|
|
|
// check-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unused_variables)]
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-12-14 20:10:51 -06:00
|
|
|
trait Trait<Input> {
|
|
|
|
type Output;
|
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
fn method(&self, i: Input) -> bool { false }
|
2014-12-14 20:10:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|