rust/tests/ui/match/match-unresolved-one-arm.rs
2023-01-11 09:32:08 +00:00

8 lines
181 B
Rust

fn foo<T>() -> T { panic!("Rocks for my pillow") }
fn main() {
let x = match () { //~ ERROR type annotations needed
() => foo() // T here should be unresolved
};
}