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