mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
186 B
Rust
13 lines
186 B
Rust
// build-pass
|
|
|
|
#![allow(unused_must_use)]
|
|
#![allow(ambiguous_wide_pointer_comparisons)]
|
|
|
|
#[allow(dead_code)]
|
|
fn check(a: &str) {
|
|
let x = a as *const str;
|
|
x == x;
|
|
}
|
|
|
|
fn main() {}
|