view run/s/scope_22_E.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 run/a/auto_16_E.d@36bedfa079e6
children
line wrap: on
line source

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

// @author@	yama <yama_member@pathlink.com>
// @date@	2006-02-26
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6373

// __DSTRESS_DFLAGS__ -version=always

module dstress.run.s.scope_22_E;

class C{
	char[] toString(){
		return "hallo bug";
	}
}

int main(){
	version(always){
		scope C c;
		c = new C();
	}

	version(always){
		if(c.toString() != "hallo bug"){
			assert(0);
		}
	}

	return 0;
}