Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
non-constant-in-const-path.rs
blob: 343bb98aeb6ed993aee60df06cfa0eb7ca8320da [
file
] [
log
] [
blame
]
fn
main
()
{
let
x
=
0
;
match
1
{
0
..=
x
=>
{}
//~^ ERROR runtime values cannot be referenced in patterns
};
}