Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
resolve
/
issue-105069.rs
blob: 73455cf7711c6b623c5c4c316755629903698852 [
file
]
use
self
::
A
::*;
use
V
;
//~ ERROR `V` is ambiguous
use
self
::
B
::*;
enum
A
{
V
}
enum
B
{
V
}
fn
main
()
{}