summary refs log tree commit diff
path: root/src/test/ui/const-generics/auxiliary/impl-const.rs
blob: fc993d63927c3d65774c770a63630755670984d0 (plain)
1
2
3
4
5
6
7
8
9
#![feature(const_generics)]

pub struct Num<const N: usize>;

// Braces around const expression causes crash
impl Num<{5}> {
    pub fn five(&self) {
    }
}