view run/b/bug_mtype_2226_B.d @ 1489:b8c0195059d9

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

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

// @author@	Bruno Medeiros <brunodomedeirosATgmail@SPAM.com>
// @date@	2006-06-24
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=7648

module dstress.run.b.bug_mtype_2226_B;

int status;

class C{
	void bar(){
		status++;
	}
}

template foo(){
	typeof( {} ) foo;
}

int main(){
	mixin foo!();

	C c = new C();

	foo = &c.bar;

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

	return 0;
}