Sign in
fuchsia
/
third_party
/
rust
/
41601a8c95240cada94c13466a1fea02e5fe87ed
/
.
/
src
/
test
/
ui
/
write-to-static-mut-in-static.rs
blob: 43c63fed8cef19efd88767d2973a012fe0215107 [
file
] [
log
] [
blame
]
pub
static
mut
A
:
u32
=
0
;
pub
static
mut
B
:
()
=
unsafe
{
A
=
1
;
};
//~^ ERROR could not evaluate static initializer
pub
static
mut
C
:
u32
=
unsafe
{
C
=
1
;
0
};
//~^ ERROR cycle detected
pub
static
D
:
u32
=
D
;
fn
main
()
{}