mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
982b49494e
This is to make the diff when stabilizing it easier to review.
11 lines
304 B
Rust
11 lines
304 B
Rust
#![stable(feature = "foo", since = "1.33.0")]
|
|
#![feature(staged_api)]
|
|
|
|
#[stable(feature = "foo", since = "1.33.0")]
|
|
#[rustc_const_unstable(feature = "const_foo", issue = "none")]
|
|
const fn unstable(a: *const i32, b: i32) -> bool {
|
|
*a == b
|
|
//~^ dereference of raw pointer is unsafe
|
|
}
|
|
|
|
fn main() {}
|