2020-09-10 02:30:05 -05:00
|
|
|
#![cfg_attr(full, feature(const_generics))]
|
|
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
2020-05-25 23:18:47 -05:00
|
|
|
|
|
|
|
pub struct Num<const N: usize>;
|
|
|
|
|
|
|
|
// Braces around const expression causes crash
|
|
|
|
impl Num<{5}> {
|
|
|
|
pub fn five(&self) {
|
|
|
|
}
|
|
|
|
}
|