view run/p/pointer_03_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 b5c364b14660
children
line wrap: on
line source

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

// @author@	Brad Anderson <brad@dsource.org>
// @date@	2006-03-12
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=41
// @desc@	[Issue 41] md5.d compilation error with enable checking

module dstress.run.p.pointer_03_C;

int main(){
	byte[1] input;
	void *b = &input[0];

	return 0;
}