Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-22434.rs
blob: d9f7b987c64fed8672ad1cdc0b68e4ced9128bb8 [
file
] [
log
] [
blame
] [
edit
]
pub
trait
Foo
{
type
A
;
}
type
I
<
'a> = &'
a
(
dyn
Foo
+
'
a
);
//~^ ERROR the value of the associated type `A` in `Foo` must be specified
fn
main
()
{}