annotate compile/b/bug_e2ir_520_B.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 b586d4d93855
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1348
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
1 // $HeadURL$
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
2 // $Date$
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
3 // $Author$
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
4
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
5 // @author@ Rueschi <rueschi@giquadrat.de>
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
6 // @date@ 2007-01-09
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=826
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
8 // @desc@ [Issue 826] ICE: is-expression with invalid template instantiation
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
9
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
10 module dstress.compile.b.bug_e2ir_520_B;
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
11
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
12 class Templ(T){
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
13 this(){
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
14 unknown_identifier;
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
15 }
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
16 }
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
17
b586d4d93855 [Issue 826] ICE: is-expression with invalid template instantiation
thomask
parents:
diff changeset
18 static assert(false == is(Templ!(int)));