annotate compile/m/mixin_35_D.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents b5f3f03b37ad
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1524
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
1 // $HeadURL$
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
2 // $Date$
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
3 // $Author$
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
4
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
5 // @author@ Reiner Pope <reiner.pope@gmail.com>
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
6 // @date@ 2007-04-08
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1113
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
8 // @desc@ [Issue 1113] Mixin causes incorrect static if branching
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
9
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
10 module dstress.compile.m.mixin_35_D;
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
11
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
12 template Foo(){
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
13 mixin("alias char[] TheType;");
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
14 static assert(is(TheType : char[]));
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
15 }
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
16
b5f3f03b37ad [Issue 1113] Mixin causes incorrect static if branching
thomask
parents:
diff changeset
17 mixin Foo!();