Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-3668-non-constant-value-in-constant
/
issue-3668-2.rs
blob: 375178172bb082a4d8999443c7f23c877093c79c [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}