diff options
Diffstat (limited to 'tests/run/tmethods1.nim')
-rwxr-xr-x | tests/run/tmethods1.nim | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/run/tmethods1.nim b/tests/run/tmethods1.nim deleted file mode 100755 index adcca9e19..000000000 --- a/tests/run/tmethods1.nim +++ /dev/null @@ -1,10 +0,0 @@ -discard """ - output: "do nothing" -""" - -method somethin(obj: TObject) = - echo "do nothing" - -var o: TObject -o.somethin() - |