mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
233 B
Rust
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() {}
|