Sign in
android
/
toolchain
/
rustc
/
c396013a05f0623e5cbcfc712426adb8e384ed83
/
.
/
tests
/
ui
/
issues
/
issue-17336.rs
blob: 97782ff9f0ef5c6433b73e7aa292758c554a5120 [
file
]
// 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
()
{}