Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
consts
/
const-block-items
/
assert-pass.rs
blob: c409cc5b91f7dbdd9300210eb1fa252e588dd0e0 [
file
]
//@ check-pass
#![
feature
(
const_block_items
)]
const
{
assert
!(
true
)
}
const
{
assert
!(
2
+
2
==
4
)
}
fn
main
()
{}