add const_fn
feature
This commit is contained in:
parent
e5e72f6666
commit
ab43c1e9a4
@ -136,7 +136,7 @@ macro_rules! newtype_index {
|
||||
];
|
||||
|
||||
unsafe {
|
||||
$type::from_u32_unchecked(value)
|
||||
$type { private: value }
|
||||
}
|
||||
}
|
||||
|
||||
@ -153,13 +153,13 @@ macro_rules! newtype_index {
|
||||
|
||||
/// Extract value of this index as a usize.
|
||||
#[inline]
|
||||
$v const fn as_u32(self) -> u32 {
|
||||
$v fn as_u32(self) -> u32 {
|
||||
self.private
|
||||
}
|
||||
|
||||
/// Extract value of this index as a u32.
|
||||
#[inline]
|
||||
$v const fn as_usize(self) -> usize {
|
||||
$v fn as_usize(self) -> usize {
|
||||
self.as_u32() as usize
|
||||
}
|
||||
}
|
||||
|
@ -24,6 +24,7 @@ Rust MIR: a lowered representation of Rust. Also: an experiment!
|
||||
#![feature(box_syntax)]
|
||||
#![feature(crate_visibility_modifier)]
|
||||
#![feature(core_intrinsics)]
|
||||
#![feature(const_fn)]
|
||||
#![feature(decl_macro)]
|
||||
#![cfg_attr(stage0, feature(macro_vis_matcher))]
|
||||
#![feature(exhaustive_patterns)]
|
||||
|
Loading…
x
Reference in New Issue
Block a user