1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: remove an obsolete const test

This commit is contained in:
Alexander Medvednikov 2021-01-24 10:17:36 +01:00
parent 1c8c3a109d
commit 80e6b090ea

View File

@ -1,10 +0,0 @@
module main
const (
age = 40
)
fn main() {
age := 30
println(age)
}