Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
resolve
/
issue-55673.rs
blob: 0436bd397424c2ee66d0583b484ec17cf83c462d [
file
] [
log
] [
blame
]
trait
Foo
{
type
Bar
;
}
fn
foo
<
T
:
Foo
>()
where
T
::
Baa
:
std
::
fmt
::
Debug
,
//~^ ERROR associated type `Baa` not found for `T`
{
}
fn
main
()
{}