summary refs log tree commit diff stats
path: root/tests/rodfiles/deadg.nim
blob: 587608e14ebbcde554ae46191a135f598dd6696e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{.deadCodeElim: on.}

proc p1*(x, y: int): int =
  result = x + y

proc p2*(x, y: string): string =
  result = x & y