Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-20009.rs
blob: ed884d1283420b511bb24e4c5b526c37a0e6a3da [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}