view nocompile/abstract_05.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 9a121126b077
children 774e02c900da
line wrap: on
line source

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

// @author@	Jarrett Billingsley <kb3ctd2@yahoo.com>
// @date@	2004-12-29
// @uri@	news:cqvnro$26ul$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/2624

// __DSTRESS_ELINE__ 15

module dstress.nocompile.abstract_05;

class Base{
    abstract this();
}

int main(){
	Base b=new Base();
	return 0;
}