view run/t/this_10_C.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents ab1736f2e47e
children
line wrap: on
line source

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

// @author@	bobef <bobef@lessequal.com>
// @date@	2006-03-02
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6414
// @desc@	func.c:373: virtual void FuncDeclaration::semantic3(Scope*): Assertion `0' failed.

module dstress.run.t.this_10_C;

int status;

template T(){
	class A{
	}
	
	class B : A{
		this(){
			status++;
		}
	}
}

int main(){
	mixin T!();
	
	if(status != 0){
		assert(0);
	}

	A a = new A();

	if(status != 0){
		assert(0);
	}

	B b = new B();

	if(status != 1){
		assert(0);
	}

	A c = new B();

	if(status != 2){
		assert(0);
	}

	return 0;
}