mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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
|
|
};
|
|
}
|