tmethods_old.nim 200 B

12345678910111213
  1. discard """
  2. matrix: "--mm:arc -d:nimInternalNonVtablesTesting"
  3. output: '''
  4. do nothing
  5. '''
  6. """
  7. # tmethods1
  8. method somethin(obj: RootObj) {.base.} =
  9. echo "do nothing"
  10. var o: RootObj
  11. o.somethin()