summary refs log tree commit diff stats
path: root/tests/method/tmethods_old.nim
blob: cd3f67217f10be9e99167978713064d062c686b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  matrix: "--mm:arc -u:nimPreviewVtables"
  output: '''
do nothing
'''
"""

# tmethods1
method somethin(obj: RootObj) {.base.} =
  echo "do nothing"
var o: RootObj
o.somethin()