comparison run/t/template_62_B.d @ 1514:891196dcfc3a

[Issue 1068] stack corruption with mixins and function templates Tomasz Stachowiak <h3r3tic@mat.uni.torun.pl> 2007-03-19 http://d.puremagic.com/issues/show_bug.cgi?id=1068
author thomask
date Wed, 25 Apr 2007 17:46:32 +0000
parents
children
comparison
equal deleted inserted replaced
1513:45c339264b57 1514:891196dcfc3a
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Tomasz Stachowiak <h3r3tic@mat.uni.torun.pl>
6 // @date@ 2007-03-19
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1068
8 // @desc@ [Issue 1068] stack corruption with mixins and function templates
9
10 // __DSTRESS_DFLAGS__ run/t/template_62_A.d
11
12 module /*dstress.*/run.t.template_62_B;
13 import /*dstress.*/run.t.template_62_A;
14
15 class Foo {
16 mixin Mix;
17 }
18
19 int main() {
20 Bar.foobar();
21 return 0;
22 }