SorteKanin@feddit.dk to Rust · 1 year agoInline const expressions have been stabilisedgithub.comexternal-linkmessage-square12linkfedilinkarrow-up142arrow-down10
arrow-up142arrow-down1external-linkInline const expressions have been stabilisedgithub.comSorteKanin@feddit.dk to Rust · 1 year agomessage-square12linkfedilink
minus-square0v0@sopuli.xyzlinkfedilinkarrow-up10·1 year agofn foo(x: i32) { match x { const { 3.pow(3) } => println!("three cubed"), _ => {} } } But it looks like inline_const_pat is still unstable, only inline_const in expression position is now stabilized.
fn foo(x: i32) { match x { const { 3.pow(3) } => println!("three cubed"), _ => {} } }
But it looks like
inline_const_pat
is still unstable, onlyinline_const
in expression position is now stabilized.