view run/t/this_10_A.d @ 1564:1d41f2132ef4

r8717@birke: tk | 2007-09-30 10:45:56 +0200 [Issue 1532] Template instance cannot use class locals as template parameters <samukha@voliacable.com> 2007-09-07 http://d.puremagic.com/issues/show_bug.cgi?id=1532
author thomask
date Sun, 30 Sep 2007 09:46:24 +0000
parents b8c0195059d9
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_A;

int status;

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

	class A{
	}
}

mixin T!();

int main(){
	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;
}