blob: 486c72d8a349f03ebfaea5788660df3308ca3ea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// check-pass
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete
pub struct Tuple;
pub trait Trait<const I: usize> {
type Input: From<<Self as Trait<I>>::Input>;
}
fn main() {}
|