blob: fc993d63927c3d65774c770a63630755670984d0 [file] [log] [blame]
#![feature(const_generics)]
pub struct Num<const N: usize>;
// Braces around const expression causes crash
impl Num<{5}> {
pub fn five(&self) {
}
}