Mercurial > projects > ldc
annotate test/virtcall.d @ 1:c53b6e3fe49a trunk
[svn r5] Initial commit. Most things are very rough.
author | lindquist |
---|---|
date | Sat, 01 Sep 2007 21:43:27 +0200 |
parents | |
children | 8b0e809563df |
rev | line source |
---|---|
lindquist@1 | 1 module virtcall; |
lindquist@1 | 2 |
lindquist@1 | 3 class C |
lindquist@1 | 4 { |
lindquist@1 | 5 override char[] toString() |
lindquist@1 | 6 { |
lindquist@1 | 7 return "overridden"; |
lindquist@1 | 8 } |
lindquist@1 | 9 } |
lindquist@1 | 10 |
lindquist@1 | 11 void main() |
lindquist@1 | 12 { |
lindquist@1 | 13 C c = new C; |
lindquist@1 | 14 auto s = c.toString(); |
lindquist@1 | 15 } |