mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
8 lines
181 B
Rust
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
|
||
|
};
|
||
|
}
|