about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-20009.rs
blob: 730f1a9a162a2b5830318b3a7ee7ae38c6983312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// build-pass (FIXME(62277): could be 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() {}