mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
982b49494e
This is to make the diff when stabilizing it easier to review.
13 lines
198 B
Rust
13 lines
198 B
Rust
// A quick test of 'unsafe const fn' functionality
|
|
|
|
const unsafe fn dummy(v: u32) -> u32 {
|
|
!v
|
|
}
|
|
|
|
const VAL: u32 = dummy(0xFFFF);
|
|
//~^ ERROR E0133
|
|
|
|
fn main() {
|
|
assert_eq!(VAL, 0xFFFF0000);
|
|
}
|