Sign in
rust
/
rust
/
c53fbcd726fefeb0fa04365f4326c8a9f5d48b48
/
.
/
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
()
{}