Files
Nim/tests/run/tmethods1.nim
2011-11-19 15:45:51 +01:00

11 lines
122 B
Nim
Executable File

discard """
output: "do nothing"
"""
method somethin(obj: TObject) =
echo "do nothing"
var o: TObject
o.somethin()