Skip to content

Commit

Permalink
compiler: fix type initialization analysis for channels
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Feb 7, 2025
1 parent 607f665 commit 0222020
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/julec/obj/cxx/type.jule
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,8 @@ fn shouldInitialized(mut &t: &sema::Type): bool {
ret false
| t.Map() != nil:
ret false
| t.Chan() != nil:
ret false
| t.Slice() != nil:
ret false
| t.Trait() != nil:
Expand Down

0 comments on commit 0222020

Please sign in to comment.