annotate compile/o/opEquals_07_A.d @ 1430:9b98cf124406

fixed @desc@ data
author thomask
date Mon, 12 Mar 2007 06:20:35 +0000
parents b1d7b8a8c466
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1401
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
1 // $HeadURL$
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
2 // $Date$
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
3 // $Author$
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
4
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
5 // @author@ Reiner Pope <reiner.pope@gmail.com>
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
6 // @date@ 2007-03-03
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1017
1430
9b98cf124406 fixed @desc@ data
thomask
parents: 1401
diff changeset
8 // @desc@ [Issue 1017] CTFE doesn't support (string == string)
1401
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
9
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
10 module dstress.compile.o.opEquals_07_A;
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
11
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
12 static assert(equals("alphabet", "alphabet"));
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
13
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
14 bool equals(char[] a, char[] b){
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
15 return (a == b);
b1d7b8a8c466 [Issue 1027] CTFE doesn't support (string == string)
thomask
parents:
diff changeset
16 }