view run/o/opIndex_06_C.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 1e6afb94ce6d
children
line wrap: on
line source

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

module dstress.run.o.opIndex_06_C;

int main(){
	const wchar c = "abc"[1];
	assert(c=='b');
	return 0;
}