view run/mixin_08.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents 5c636c0543fe
children 52c9e86b6486
line wrap: on
line source

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

// @author@	Ben Hinkle
// @date@	2005-03-18
// @uri@	news:d1faqu$1pir$1@digitaldaemon.com
// @url@	nntp://news.digitalmars.com/digitalmars.D.announce/10

module dstress.run.mixin_08;

template Foo(alias tail) {
	int test(){
		return 1;
	}
}

struct List(V) {
	V tail;
	mixin Foo!(tail);
}

int main(){
	List!(int) x;
	assert(x.test()==1);
	return 0;
}