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

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