Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
suggest-full-enum-variant-for-local-module.rs
blob: 1dfc0786668f235dc2d57fec01286d1d880a17e1 [
file
] [
log
] [
blame
] [
edit
]
mod
option
{
pub
enum
O
<
T
>
{
Some
(
T
),
None
,
}
}
fn
main
()
{
let
_
:
option
::
O
<()>
=
();
//~ ERROR 9:28: 9:30: mismatched types [E0308]
}