Skip to content

Commit

Permalink
avoid checking inside for comptime for now
Browse files Browse the repository at this point in the history
  • Loading branch information
felipensp committed Jan 21, 2025
1 parent 97ad6d9 commit be50764
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vlib/v/checker/checker.v
Original file line number Diff line number Diff line change
Expand Up @@ -5293,7 +5293,8 @@ fn (mut c Checker) ensure_type_exists(typ ast.Type, pos token.Pos) bool {
return false
}
sym := c.table.sym(typ)
if !c.is_builtin_mod && sym.kind in [.struct, .alias] && !sym.is_pub && sym.mod != c.mod {
if !c.is_builtin_mod && sym.kind in [.struct, .alias] && !sym.is_pub && sym.mod != c.mod
&& c.comptime.comptime_for_field_var == '' {
c.error('${sym.kind} `${sym.name}` was declared as private to module `${sym.mod}`, so it can not be used inside module `${c.mod}`',
pos)
return false
Expand Down

0 comments on commit be50764

Please sign in to comment.