view run/bug_20050405_06.d @ 1608:a261c96f7d64

Remove nocompile/m/mixin_25_B, see #5.
author Christian Kamm <kamm incasoftware de>
date Sat, 25 Apr 2009 09:16:37 +0200
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@     Valéry <valery@freesurf.fr>
// @date@	2005-04-05
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3470

module dstress.run.bug_20050405_0;

int main(){
	byte[] a, b;
	a.length = 257;
	b.length = 257;
	b[] = a;
	return 0;
}