Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-23073.rs
blob: a0ca91336c365845e6ce8a9ca71481ae4c93e100 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
associated_type_defaults
)]
trait
Foo
{
type
T
;
}
trait
Bar
{
type
Foo
:
Foo
;
type
FooT
=
<<
Self
as
Bar
>::
Foo
>::
T
;
//~ ERROR ambiguous associated type
}
fn
main
()
{}