Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
match
/
match-unresolved-one-arm.rs
blob: fa65d87b3abbdf6050dc69bc580d390f491e242f [
file
] [
log
] [
blame
] [
edit
]
fn
foo
<
T
>()
->
T
{
panic
!(
"Rocks for my pillow"
)
}
fn
main
()
{
let
x
=
match
()
{
//~ ERROR type annotations needed
()
=>
foo
()
// T here should be unresolved
};
}