comparison compile/l/lazy_01_B.d @ 1284:96e7be832c35

[Issue 703] New: SuperExp::scanForNestedRef Assertion Oskar Linde <oskar.linde@gmail.com> 2006-12-21 http://d.puremagic.com/issues/show_bug.cgi?id=703
author thomask
date Tue, 26 Dec 2006 14:21:29 +0000
parents
children
comparison
equal deleted inserted replaced
1283:91479703e22e 1284:96e7be832c35
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Oskar Linde <oskar.linde@gmail.com>
6 // @date@ 2006-12-21
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=703
8 // @desc@ [Issue 703] New: SuperExp::scanForNestedRef Assertion
9
10 module dstress.compile.l.lazy_01_B;
11
12 class C {
13 void func(lazy uint x) {
14 func(super.toHash());
15 }
16 }
17