view undefined/abstract_01.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 66f476bc8963
children
line wrap: on
line source

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

// @author@	Stewart Gordon <Steward_member@pathlink.com>
// @date@	2004-09-24
// @uri@	news:cj0qf6$2u2v$1@digitaldaemon.com
// @url@	nntp://digitalmars.com/digitalmars.D.bugs/1940

module dstress.compile.abstract_01;

int status;

abstract class MyAbstractClass{
	abstract int test()
		in{
			status++;
		};
}