Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-12033.rs
blob: 0bf6490bafed8200a7517fe8d35ddbf55725bc10 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
use
std
::
cell
::
RefCell
;
fn
main
()
{
let
x
=
RefCell
::
new
(
0
);
if
*
x
.
borrow
()
==
0
{}
else
{}
}