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