mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
187 B
Rust
12 lines
187 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() {}
|