view run/d/delete_10_C.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +0200
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Jay <Jay_member@pathlink.com>
// @date@	2005-07-05
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4440

module dstress.run.d.delete_10_C;

class Box{
	int i;
}

int main(){
	Box*[10] boxes;
	Box b = new Box;
	boxes[0] = &b;
	delete boxes[0];
	return 0;
}