mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-07 12:24:19 +00:00
@@ -27,6 +27,8 @@ end
|
||||
9014
|
||||
9016
|
||||
9018
|
||||
@[1, 2]
|
||||
@[1, 2, 3]
|
||||
'''
|
||||
"""
|
||||
|
||||
@@ -191,7 +193,7 @@ block t3499_keepstate:
|
||||
break
|
||||
|
||||
# bug #3499 last snippet fixed
|
||||
# bug 705 last snippet fixed
|
||||
# bug #705 last snippet fixed
|
||||
|
||||
|
||||
|
||||
@@ -225,7 +227,7 @@ block t2023_objiter:
|
||||
|
||||
|
||||
block:
|
||||
# issue #13739
|
||||
# bug #13739
|
||||
iterator myIter(arg: openarray[int]): int =
|
||||
var tmp = 0
|
||||
let len = arg.len
|
||||
@@ -240,3 +242,12 @@ block:
|
||||
echo x
|
||||
|
||||
someProc()
|
||||
|
||||
block:
|
||||
# bug #12576
|
||||
iterator ff(sq: varargs[seq[int]]): int =
|
||||
for x in sq:
|
||||
echo x
|
||||
|
||||
for x in ff(@[1, 2], @[1, 2, 3]):
|
||||
echo x
|
||||
|
||||
@@ -336,7 +336,7 @@ ProcDef
|
||||
static: assert bar("x") == "x"
|
||||
|
||||
#------------------------------------------------------
|
||||
# issue #13909
|
||||
# bug #13909
|
||||
|
||||
template dependency*(id: string, weight = 0.0) {.pragma.}
|
||||
|
||||
@@ -345,4 +345,25 @@ type
|
||||
provider*: proc(obj: string): pointer {.dependency("Data/" & obj, 16.1), noSideEffect.}
|
||||
|
||||
proc myproc(obj: string): string {.dependency("Data/" & obj, 16.1).} =
|
||||
result = obj
|
||||
result = obj
|
||||
|
||||
# bug 12523
|
||||
template myCustomPragma {.pragma.}
|
||||
|
||||
type
|
||||
RefType = ref object
|
||||
field {.myCustomPragma.}: int
|
||||
|
||||
ObjType = object
|
||||
field {.myCustomPragma.}: int
|
||||
RefType2 = ref ObjType
|
||||
|
||||
block:
|
||||
let x = RefType()
|
||||
for fieldName, fieldSym in fieldPairs(x[]):
|
||||
doAssert hasCustomPragma(fieldSym, myCustomPragma)
|
||||
|
||||
block:
|
||||
let x = RefType2()
|
||||
for fieldName, fieldSym in fieldPairs(x[]):
|
||||
doAssert hasCustomPragma(fieldSym, myCustomPragma)
|
||||
|
||||
Reference in New Issue
Block a user