view 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
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Reiner Pope <reiner.pope@gmail.com>
// @date@	2007-03-03
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1017
// @desc@	[Issue 1017] CTFE doesn't support (string == string)

module dstress.compile.o.opEquals_07_A;

static assert(equals("alphabet", "alphabet"));

bool equals(char[] a, char[] b){
	return (a == b);
}