view run/template_01.d @ 1:3414705c41ac

removed CVS header
author thomask
date Sun, 26 Sep 2004 12:06:09 +0000
parents 3269e4627918
children a33ad7189d21
line wrap: on
line source


// @author@	Daniel Horn <hellcatv@hotmail.com>
// @date@	2004-05-01
// @uri@	news://c6uoje$14a1$1@digitaldaemon.com

template T(int size){
	int vec[size];
}

int main(){
	int a = T!(4>1?4:1).vec[0];
	int b = T!(4==1?1:(1==1?4:(4>1?1:4))).vec[0];
	return 0;
}