annotate run/unicode_02.d @ 4:1ed6616fe905

extended array tests
author thomask
date Sun, 26 Sep 2004 15:54:31 +0000
parents
children f87ba6507260
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
1 int main(){
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
2 char[] a="\u00C4";
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
3 char[] b="\u0041\u0308";
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
4
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
5 if(b>a){
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
6 assert(0);
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
7 }
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
8
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
9 return 0;
1ed6616fe905 extended array tests
thomask
parents:
diff changeset
10 }