Sign in
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
parser
/
parse-assoc-type-lt.rs
blob: 48e1423023ecca7af40b0c33a118a034ad064541 [
file
]
//@ check-pass
trait
Foo
{
type
T
;
fn
foo
()
->
Box
<<
Self
as
Foo
>::
T
>;
}
fn
main
()
{}