view nocompile/t/this_14_A.d @ 1255:cfe776588fc0

[Issue 642] New: error: mixin "static this" into where it cannot be Kazuhiro Inaba <kinaba@is.s.u-tokyo.ac.jp> 2006-12-04 news:bug-642-3@http.d.puremagic.com/issues/
author thomask
date Thu, 07 Dec 2006 10:51:13 +0000
parents
children daef239f37cf
line wrap: on
line source

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

// @author@	Kazuhiro Inaba <kinaba@is.s.u-tokyo.ac.jp>
// @date@	2006-12-04
// @uri@	news:bug-642-3@http.d.puremagic.com/issues/
// @desc@	[Issue 642] New: error: mixin "static this" into where it cannot be

// __DSTRESS_ELINE__ 20

module dstress.nocompile.t.this_14_A;

template T(){
	static this(){
	}
}

void test(){
	mixin T!();
}