Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-20009.rs
blob: f289e58c50e684821245ade7d1f44e4970772966 [
file
] [
log
] [
blame
]
// check-pass
// Check that associated types are `Sized`
// pretty-expanded FIXME #23616
trait
Trait
{
type
Output
;
fn
is_sized
(&
self
)
->
Self
::
Output
;
fn
wasnt_sized
(&
self
)
->
Self
::
Output
{
loop
{}
}
}
fn
main
()
{}