view run/bug_20050330_B.d @ 1609:3c803614a8fb

Add a few missing abstracts.
author Christian Kamm <kamm incasoftware de>
date Sun, 26 Apr 2009 13:38:23 +0200
parents ec5e144583ea
children
line wrap: on
line source

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

// @author@	Regan Heath <regan@netwin.co.nz>
// @date@	2005-03-30
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3385

module dstress.run.bug_20050330_B;

template Blah(int a, alias B){
	mixin Blah!(a-1, B);
}

template Blah(int a:0, alias B){
	int x(){
		return a;
	}
}

int main(){
	int a;
	mixin Blah!(5,a);
	return 0;
}