rust/src/test/ui/issues/issue-20009.rs
2019-11-04 16:03:46 +01:00

14 lines
233 B
Rust

// 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() {}