comparison tests/mini/delegate3.d @ 837:331a176c1f4f

Removed error on naked, not fully complete, but I'll be doing more work on it during this Christmas, and some things do work. Fixed taking delegate of final class method. see mini/delegate3.d.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 09 Dec 2008 14:07:30 +0100
parents
children
comparison
equal deleted inserted replaced
836:14c3319ac1bb 837:331a176c1f4f
1 module bar;
2
3 class S
4 {
5 int i;
6 final int foo()
7 {
8 return i;
9 }
10 }
11
12 void main()
13 {
14 auto s = new S;
15 s.i = 42;
16 auto dg = &s.foo;
17 assert(dg() == 42);
18 }