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