view run/b/bug_cgcs_353_F3.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 03b5056496f1
children
line wrap: on
line source

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

// @author@	James Dunne <james.jdunne@gmail.com>
// @date@	2005-08-28
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4882

module dstress.run.b.bug_cgcs_353_F3;

int main(){
	int[] foos;

	if(foos.length != 0){
		assert(0);
	}

	foos = 3 ~ foos[];

	if(foos.length != 1){
		assert(0);
	}

	return 0;
}