summary refs log tree commit diff
path: root/tests/ui/resolve/issue-10200.rs
blob: d529536b95256a76fb4b89225234cc0ea2bb3e0e (plain)
1
2
3
4
5
6
7
8
9
struct Foo(bool);
fn foo(_: usize) -> Foo { Foo(false) }

fn main() {
    match Foo(true) {
        foo(x) //~ ERROR expected a pattern, found a function call
        => ()
    }
}