blob: 6228d044ad11ac588170ac8a0fd6c46b2a8e1f4c [file] [log] [blame]
// compile-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() {}