Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
consts
/
issue-64662.rs
blob: e3a8c85830f73fb2c7db62f91f36bef789fccb4f [
file
]
enum
Foo
{
A
=
foo
(),
//~ ERROR: type annotations needed
B
=
foo
(),
//~ ERROR: type annotations needed
}
const
fn
foo
<
T
>()
->
isize
{
0
}
fn
main
()
{}