Sign in
rust
/
rust
/
98e8f99bc0401f9ff22dca2290b2bc2c33345a4b
/
.
/
tests
/
ui
/
numeric
/
ref-int.rs
blob: da4f4fc070828904f011088d4d62c596ebef5bdf [
file
] [
log
] [
blame
]
//@ 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
);
}