view tests/mini/emptytuple.d @ 916:5f4a69a53906

Renamed Rebuild profile to match DSSS and Tango convention.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 02 Feb 2009 00:34:22 +0100
parents e739ef5dfff0
children
line wrap: on
line source

template T(B...) {
	typedef B TArgs;
}

int main(){
	alias T!() instantiate;
	return 0;
}