summary refs log tree commit diff stats
path: root/tests/ccgbugs/tprogmem.nim
blob: 58a20583a694ee2e09ed96aa44987fe28c74ad5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  output: "5"
  cmd: r"nim c --hints:on $options -d:release $file"
  ccodecheck: "'/*PROGMEM*/ myLetVariable = {'"
  targets: "c"
"""

var myLetVariable {.exportc, codegenDecl: "$# /*PROGMEM*/ $#".} = [1, 2, 3]

myLetVariable[0] = 5
echo myLetVariable[0]