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