summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-44021.rs
blob: 0b9558cc91e1f8ceb9ec2aafd48a2c4cf9935db0 (plain)
1
2
3
4
5
6
struct MyStruct;
impl MyStruct {
    fn f() {|x, y} //~ ERROR expected one of `:`, `@`, or `|`, found `}`
}

fn main() {}