summary refs log tree commit diff
path: root/src/test/ui/issues/issue-18809.rs
blob: 9b8275f81199932e277e7eda1a046061b71714c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// build-pass (FIXME(62277): could be check-pass?)
trait Tup {
    type T0;
    type T1;
}

impl Tup for isize {
    type T0 = f32;
    type T1 = ();
}

fn main() {}