Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ 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() {}