sui_
rust
0.1.0
mir_
show
Sections
编译期计算原理:MIR 展示
In sui_
rust::
ch01::
ctfe
sui_rust
::
ch01
::
ctfe
Function
mir_show
Copy item path
Source
pub fn mir_show()
Expand description
§
编译期计算原理:MIR 展示
const fn
anwser() -> u32 {
42
}
const
A: u32 = anwser();
fn
main(){ A; }