summary refs log tree commit diff stats
path: root/nimpretty/tests/simple.nim
blob: 435bd6bd2da31d8feaff11b2f38b48dd39f127c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var x: int = 2

echo x
# bug #9144

proc a() =
  while true:
    discard
    # comment 1

  # comment 2
  discard

# bug #15596
discard## comment 3

discard # comment 4