blob: 6e053adb3850de662a90da08a08142053316108c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//@ compile-flags: -Znext-solver
//@ check-pass
#![feature(const_trait_impl)]
#[const_trait] trait Foo {
type Assoc<T>: [const] Bar
where
T: [const] Bar;
}
#[const_trait] trait Bar {}
struct N<T>(T);
impl<T> Bar for N<T> where T: Bar {}
struct C<T>(T);
impl<T> const Bar for C<T> where T: [const] Bar {}
impl Foo for u32 {
type Assoc<T> = N<T>
where
T: Bar;
}
impl const Foo for i32 {
type Assoc<T> = C<T>
where
T: [const] Bar;
}
fn main() {}
|