summary refs log tree commit diff
path: root/src/test/ui/parser/issue-21153.rs
blob: 46cd45f28b43da81d0032a380f88c4b86b59dd3a (plain)
1
2
3
4
5
trait MyTrait<T>: Iterator { //~ ERROR missing `fn`, `type`, or `const`
    Item = T;
}

fn main() {}