view nocompile/bug_e2ir_814.d @ 1622:d402aa53926c

Add test for bug 3092 written by Manuel K?nig
author Leandro Lucarella <llucax@gmail.com>
date Tue, 19 Oct 2010 19:18:23 -0300
parents 52c9e86b6486
children
line wrap: on
line source

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

// @author@	larrycowan <larrycowan_member@pathlink.com>
// @date@	2004-11-04
// @uri@	news:cmd9i4$16g5$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D/12279

// __DSTRESS_ELINE__ 17

static void dummy(...){
}

class Foo{
	static this(){
		Foo.display_name();
	}

	void display_name(){
		dummy(super.classinfo.name);
	}
}