about summary refs log tree commit diff
path: root/tests/ui/associated-types/issue-63593.rs
blob: dea81f729b4e072abd5a2cf490a1538390fdd642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@ revisions: current next
//@ ignore-compare-mode-next-solver (explicit revisions)
//@[next] compile-flags: -Znext-solver

#![feature(associated_type_defaults)]

// Tests that `Self` is not assumed to implement `Sized` when used as an
// associated type default.

trait Inner<S> {}

trait MyTrait {
    type This = Self;  //~ error: size for values of type `Self` cannot be known
    fn something<I: Inner<Self::This>>(i: I);
}

fn main() {}