annotate run/wchar_09.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 0e1a3785ec97
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
142
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
1 // $HeadURL$
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
2 // $Date$
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
3 // $Author$
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
4
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
5 module dstress.run.wchar_09;
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
6
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
7 int main(){
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
8 wchar wc;
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
9 assert(wchar.min==0);
144
0e1a3785ec97 1) added missing @url@/@uri@ tags
thomask
parents: 142
diff changeset
10 assert(wchar.min==wc.min);
0e1a3785ec97 1) added missing @url@/@uri@ tags
thomask
parents: 142
diff changeset
11 assert(wchar.min=='\u0012'.min);
142
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
12 return 0;
25e3f5d59df4 added wchar tests
thomask
parents:
diff changeset
13 }