Files
Nim/tests/tsidee1.nim
2010-02-14 00:29:35 +01:00

12 lines
233 B
Nim

var
global: int
proc dontcare(x: int): int = return x + global
proc SideEffectLyer(x, y: int): int {.noSideEffect.} = #ERROR_MSG 'SideEffectLyer' can have side effects
return x + y + dontcare(x)
echo SideEffectLyer(1, 3)