summary refs log tree commit diff stats
path: root/tests/accept/run/tmethods1.nim
blob: adcca9e1933a1f043ed94bb8d6866c5459427eb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  output: "do nothing"
"""

method somethin(obj: TObject) =
  echo "do nothing"

var o: TObject
o.somethin()