summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-32505.rs
blob: d95e7dc7d9effee01219ada3196fad38e35af57e (plain)
1
2
3
4
5
6
pub fn test() {
    foo(|_|) //~ ERROR expected expression, found `)`
    //~^ ERROR cannot find function `foo` in this scope
}

fn main() { }