view addon/bug_20050903_Y.d @ 1534:345207906be7

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:35 +0000
parents 35c50493907e
children
line wrap: on
line source

module addon.bug_20050903_Y;

template DataStreamability(){
	const int isStreamable = true;

	void read(int st, int val){
		st >>= val;
	}
}

struct Vector(T){
	static if (DataStreamability!().isStreamable){
	}
}