2020-05-26 00:18:47 -04:00
|
|
|
// aux-build:impl-const.rs
|
|
|
|
|
// run-pass
|
2020-08-09 06:19:57 +00:00
|
|
|
// revisions: full min
|
2020-05-26 00:18:47 -04:00
|
|
|
|
2020-08-09 06:19:57 +00:00
|
|
|
#![cfg_attr(full, feature(const_generics))]
|
|
|
|
|
#![cfg_attr(full, 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();
|
|
|
|
|
}
|