File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ pub fn (mut c Checker) check_files(ast_files []&ast.File) {
368
368
if ! has_main_mod_file {
369
369
c.error ('project must include a `main` module or be a shared library (compile with `v -shared`)' ,
370
370
token.Pos{})
371
- } else if ! has_main_fn {
371
+ } else if ! has_main_fn && ! c.pref.is_o {
372
372
c.error ('function `main` must be declared in the main module' , token.Pos{})
373
373
}
374
374
}
Original file line number Diff line number Diff line change @@ -5486,8 +5486,9 @@ fn (mut g Gen) enum_val(node ast.EnumVal) {
5486
5486
// && g.inside_switch
5487
5487
if g.pref.translated && node.typ.is_number () {
5488
5488
// Mostly in translated code, when C enums are used as ints in switches
5489
- sym := g.table.sym (node.typ)
5490
- g.write ('/* $node enum val is_number $node.mod styp=$styp sym=$sym */_const_main__$node.val ' )
5489
+ // sym := g.table.sym(node.typ)
5490
+ // g.write('/* $node enum val is_number $node.mod styp=$styp sym=$sym*/_const_main__$node.val')
5491
+ g.write ('_const_main__$node.val ' )
5491
5492
} else {
5492
5493
g.write ('${styp} __$node.val ' )
5493
5494
}
You can’t perform that action at this time.
0 commit comments