2020-05-25 23:18:47 -05:00
|
|
|
// aux-build:impl-const.rs
|
|
|
|
// run-pass
|
2021-08-27 11:04:57 -05:00
|
|
|
#![feature(generic_const_exprs)]
|
|
|
|
#![allow(incomplete_features)]
|
2020-05-25 23:18:47 -05:00
|
|
|
|
|
|
|
extern crate impl_const;
|
|
|
|
|
|
|
|
use impl_const::*;
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let n = Num::<5>;
|
|
|
|
n.five();
|
|
|
|
}
|