annotate nocompile/t/this_14_A.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents cfe776588fc0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1255
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
1 // $HeadURL$
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
2 // $Date$
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
3 // $Author$
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
4
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
5 // @author@ Kazuhiro Inaba <kinaba@is.s.u-tokyo.ac.jp>
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
6 // @date@ 2006-12-04
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1255
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=642
1255
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
8 // @desc@ [Issue 642] New: error: mixin "static this" into where it cannot be
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
9
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 20
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
11
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
12 module dstress.nocompile.t.this_14_A;
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
13
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
14 template T(){
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
15 static this(){
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
16 }
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
17 }
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
18
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
19 void test(){
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
20 mixin T!();
cfe776588fc0 [Issue 642] New: error: mixin "static this" into where it cannot be
thomask
parents:
diff changeset
21 }