view nocompile/a/abstract_14.d @ 594:1f473003ec30

John Demme <me@teqdruid.com> 2005-06-07 news:1118118941.10321.21.camel@localhost.localdomain
author thomask
date Thu, 23 Jun 2005 03:53:25 +0000
parents
children 9a121126b077
line wrap: on
line source

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

// @author@	John Demme <me@teqdruid.com>
// @date@	2005-06-07
// @uri@	news:1118118941.10321.21.camel@localhost.localdomain

// :23 is tested in abstract_08

// __DSTRESS_ELINE__ 16

module dstress.nocompile.a.abstract_14;

class A{
	abstract void test();
}

class B : A{
}

void main(){
	B b = new B;
}