about summary refs log tree commit diff
path: root/tests/ui/const-generics/type-after-const-ok.rs
blob: 0a336e9a14a51a480c3f5d1126a631626ba8a1c7 (plain)
1
2
3
4
5
6
//@ run-pass
// Verifies that having generic parameters after constants is permitted
#[allow(dead_code)]
struct A<const N: usize, T>(T);

fn main() {}