Sign in
rust
/
rust
/
7ce91c53c4c7fa80b60b49e030b0298d4e575d23
/
.
/
tests
/
ui
/
numeric
/
ref-int.rs
blob: da4f4fc070828904f011088d4d62c596ebef5bdf [
file
]
//@ run-pass
//! regression test for <https://github.com/rust-lang/rust/issues/3091>
pub
fn
main
()
{
let
x
=
1
;
let
y
=
1
;
assert_eq
!(&
x
,
&
y
);
}