summary refs log tree commit diff
path: root/src/test/ui/parser/issue-32505.rs
blob: 49e7a2f536f2a21ca59334561a4e56dfe16e4780 (plain)
1
2
3
4
5
6
7
// compile-flags: -Z continue-parse-after-error

pub fn test() {
    foo(|_|) //~ ERROR expected expression, found `)`
}

fn main() { }