Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
ambiguous-7.rs
blob: 5148ff4cc3396a05eead0abe8e7b3f98cd526e5f [
file
] [
log
] [
blame
] [
edit
]
// https://github.com/rust-lang/rust/pull/113099#issuecomment-1638206152
mod
t2
{
#[
derive
(
Debug
)]
pub
enum
Error
{}
}
pub
use
t2
::*;
mod
t3
{
pub
trait
Error
{}
}
use
self
::
t3
::*;
fn
a
<
E
:
Error
>(
_
:
E
)
{}
//~^ ERROR `Error` is ambiguous
fn
main
()
{}