diff --git a/compiler/parser.v b/compiler/parser.v index 32c4410322..7609327510 100644 --- a/compiler/parser.v +++ b/compiler/parser.v @@ -276,9 +276,9 @@ fn (p mut Parser) parse(pass Pass) { if p.is_script && !p.pref.is_test { p.set_current_fn( MainFn ) p.check_unused_variables() - if !p.first_pass() && !p.pref.is_repl { - p.check_unused_imports() - } + } + if !p.first_pass() && !p.pref.is_repl { + p.check_unused_imports() } if false && !p.first_pass() && p.fileis('main.v') { out := os.create('/var/tmp/fmt.v') or {