Sign in
rust
/
rust
/
56572203199216a87f69fa954bb1864a0ee8aade
/
.
/
tests
/
ui
/
inline-const
/
referencing-local-variables.rs
blob: f9f0fef07f08b15e792377b62d4ebd8e26e83334 [
file
]
const
fn
test_me
<
T
>(
a
:
usize
)
->
usize
{
const
{
a
}
//~^ ERROR: attempt to use a non-constant value in a constant
}
fn
main
()
{}