Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-3668-2.rs
blob: 8aa0897ecb4dc791cf9990716c99b8f63035143a [
file
] [
log
] [
blame
]
// run-rustfix
#![
allow
(
unused_variables
,
dead_code
)]
fn
f
(
x
:
isize
)
{
static
child
:
isize
=
x
+
1
;
//~^ ERROR attempt to use a non-constant value in a constant
}
fn
main
()
{}