Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
felipensp committed Jan 21, 2025
1 parent e564485 commit 556c36f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion vlib/v/checker/checker.v
Original file line number Diff line number Diff line change
Expand Up @@ -5295,7 +5295,6 @@ fn (mut c Checker) ensure_type_exists(typ ast.Type, pos token.Pos) bool {
sym := c.table.sym(typ)
if !c.is_builtin_mod && sym.kind in [.struct, .alias] && !sym.is_pub && sym.mod != c.mod
&& c.comptime.comptime_for_field_var == '' && !c.inside_recheck {
println('>>> ${sym.mod} ${c.mod}')
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 556c36f

Please sign in to comment.