Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various set related bugs #5881

Open
ghost opened this issue May 24, 2017 · 3 comments
Open

Various set related bugs #5881

ghost opened this issue May 24, 2017 · 3 comments

Comments

@ghost
Copy link

ghost commented May 24, 2017

when defined(a): # fails
    proc p(T: typedesc): set[T] = discard # "Error: ordinal type expected"
elif defined(b): # fails
    proc p[T](): set[T] = discard
    discard p[int]

    # Traceback (most recent call last)
    # nim.nim(121)             nim
    # nim.nim(77)              handleCmdLine
    # main.nim(163)            mainCommand
    # main.nim(74)             commandCompileToC
    # modules.nim(240)         compileProject
    # modules.nim(180)         compileModule
    # passes.nim(215)          processModule
    # passes.nim(135)          processTopLevelStmt
    # cgen.nim(1297)           myProcess
    # ccgstmts.nim(1126)       genStmts
    # ccgexprs.nim(2084)       expr
    # ccgstmts.nim(1126)       genStmts
    # ccgexprs.nim(2156)       expr
    # cgen.nim(823)            genProc
    # cgen.nim(786)            genProcNoForward
    # cgen.nim(736)            genProcPrototype
    # ccgtypes.nim(848)        genProcHeader
    # ccgtypes.nim(389)        genProcParams
    # ccgtypes.nim(233)        isInvalidReturnType
    # ccgtypes.nim(164)        mapType
    # ccgtypes.nim(151)        mapSetType
    # types.nim(1353)          getSize
    # types.nim(1345)          computeSize
    # types.nim(1292)          computeSizeAux
    # types.nim(1181)          align
    # system.nim(2643)         sysFatal
    # Error: unhandled exception: over- or underflow [OverflowError]
elif defined(c): # works
    proc p[T](): set[T] = discard
    discard p[int8]()
@ghost ghost added the Compiler Crash label Oct 15, 2017
@nc-x
Copy link
Contributor

nc-x commented Jan 1, 2019

Case a -

proc p(T: typedesc): set[T] = discard 

This is not a bug AFAIK.
https://nim-lang.org/docs/manual.html#types-set-type says that the basetype of set can only be - int8-int16, uint8/byte-uint16, char, enum whereas typedesc can be any other type as well, and is therefore not an ordinal type.

But yeah, the other cases like

proc p[T](): set[T] = discard
discard p[float]()   # replace float by any other unsupported type in set

crashes one way or the other

@Araq
Copy link
Member

Araq commented Jan 1, 2019

Case a is also a bug, the compiler needs to delay that error until set[T] is instantiated.

@metagn
Copy link
Collaborator

metagn commented Aug 27, 2023

Case b no longer crashes but gives Error: illegal discard proc, did you mean: p()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants