about summary refs log tree commit diff
path: root/tests/ui/const-generics/issues/issue-70167.rs
blob: 4037bd67a282bbf62523b8dc6aa0c76776897abb (plain)
1
2
3
4
5
6
//@ check-pass
pub trait Trait<const N: usize>: From<<Self as Trait<N>>::Item> {
  type Item;
}

fn main() {}