view nocompile/p/pointer_03_A.d @ 1303:b5c364b14660

[Issue 41] md5.d compilation error with enable checking Brad Anderson <brad@dsource.org> 2006-03-12 http://d.puremagic.com/issues/show_bug.cgi?id=41
author thomask
date Sun, 31 Dec 2006 02:00:12 +0000
parents
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.nocompile.p.pointer_03_A;

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

	return 0;
}