mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
8 lines
115 B
Rust
8 lines
115 B
Rust
//@ check-pass
|
|
#![feature(const_block_items)]
|
|
|
|
const { assert!(true) }
|
|
const { assert!(2 + 2 == 4) }
|
|
|
|
fn main() {}
|