mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-11 22:08:54 +00:00
9
tests/generics/t7839.nim
Normal file
9
tests/generics/t7839.nim
Normal file
@@ -0,0 +1,9 @@
|
||||
type A[I: SomeOrdinal, E] = tuple # same for object
|
||||
length: int
|
||||
|
||||
doAssert A.sizeof == sizeof(int) # works without the following proc
|
||||
|
||||
proc newA*[I: SomeOrdinal, E](): A[I, E] = # works without `SomeOrdinal`
|
||||
discard
|
||||
|
||||
discard newA[uint8, int]()
|
||||
Reference in New Issue
Block a user