Skip to content

Commit

Permalink
fixes #10791
Browse files Browse the repository at this point in the history
  • Loading branch information
Araq committed Mar 6, 2019
1 parent 32c9ca6 commit 3c0f01f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions compiler/semstmts.nim
Expand Up @@ -1189,6 +1189,9 @@ proc typeSectionRightSidePass(c: PContext, n: PNode) =
incl a[2].flags, nfSem # bug #10548
if sfExportc in s.flags and s.typ.kind == tyAlias:
localError(c.config, name.info, "{.exportc.} not allowed for type aliases")
if tfBorrowDot in s.typ.flags and s.typ.kind != tyDistinct:
excl s.typ.flags, tfBorrowDot
localError(c.config, name.info, "only a 'distinct' type can borrow `.`")
let aa = a.sons[2]
if aa.kind in {nkRefTy, nkPtrTy} and aa.len == 1 and
aa.sons[0].kind == nkObjectTy:
Expand Down

0 comments on commit 3c0f01f

Please sign in to comment.