mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-25 13:24:22 +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
|
||
|
};
|
||
|
}
|