annotate compile/t/typeof_10_C.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 bd7f77817bf7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1153
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
1 // $HeadURL$
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
2 // $Date$
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
3 // $Author$
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
4
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
5 // @author@ Tomasz Stachowiak <bugzilla@digitalmars.com>
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
6 // @date@ 2006-09-27
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1153
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=380
1153
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
8 // @desc@ [Issue 380] New: cannot use typeof(*this) in a static context
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
9
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
10 module dstress.compile.t.typeof_10_C;
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
11
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
12 struct Foo{
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
13 typeof(*typeof(this).init) x;
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
14 }
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
15
bd7f77817bf7 [Issue 380] New: cannot use typeof(*this) in a static context
thomask
parents:
diff changeset
16 static assert(is(Foo == typeof(Foo.x)));