mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-31 02:43:41 +00:00
14 lines
245 B
Nim
14 lines
245 B
Nim
discard """
|
|
ccodecheck: "__restrict__"
|
|
action: compile
|
|
joinable: false
|
|
"""
|
|
|
|
# see bug #16027
|
|
iterator myitems(s: seq[int]): int =
|
|
var data {.codegenDecl: "$# __restrict__ $#".} : ptr int = nil
|
|
yield 1
|
|
|
|
for i in @[1].myitems:
|
|
discard
|