annotate run/t/typedef_22_A.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 4756fddca5c4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1433
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
1 // $HeadURL$
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
2 // $Date$
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
3 // $Author$
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
4
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
5 // @author@ Tomas Lindquist Olsen <tomas@famolsen.dk>
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
6 // @date@ 2007-03-14
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1062
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
8 // @desc@ [Issue 1062] Cannot catch typedef'd class
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
9
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
10 module dstress.run.t.typedef_22_A;
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
11
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
12 typedef Exception TypedefException;
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
13
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
14 int main(){
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
15 try{
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
16 }catch(TypedefException e){
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
17 assert(0);
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
18 }
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
19
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
20 return 0;
4756fddca5c4 r7381@birke: tk | 2007-03-29 15:04:07 +0200
thomask
parents:
diff changeset
21 }