summary refs log tree commit diff stats
path: root/tests/nimdoc/t15916.nim
blob: c6c09d94b48a87e7c6765180b040c8dad7e9db49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
discard """
cmd: "nim doc --hints:off $file"
action: "compile"
joinable: false
"""

type
  Test* = object
    id: int

proc initTest*(id: int): Test =
  result.id = id

proc hello*() =
  runnableExamples:
    discard