1 2 3 4 5 6 7 8 9 10 11
struct Empty; trait Howness {} impl Howness for () { fn how_are_you(&self -> Empty { Empty } } //~ ERROR mismatched closing delimiter fn main() {}