view nocompile/abstract_08.d @ 311:35a1df98caf1

updated abstract tests to dmd-118
author thomask
date Wed, 16 Mar 2005 11:09:23 +0000
parents
children 1f6cf5ccfbc9
line wrap: on
line source

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

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

module dstress.nocompile.abstract_08;

class A{
	abstract void test(){
	}
}

int main(){
	A a = new A();
	return 0;
}