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