Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
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
()
{}