view compile/abstract_01.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents de27ca625bf7
children a33ad7189d21
line wrap: on
line source

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

module dstress.compile.abstract_01;

int status;

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