view undefined/abstract_04.d @ 1560:36bedfa079e6

D1 -> D2 : 2/N
author thomask
date Sun, 19 Aug 2007 19:15:01 +0000
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_04;

int status;

abstract interface MyInterface{
	abstract int test()
		in{
			status++;
		};
}