view run/struct_10.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@	Sean Kelly <sean@f4.ca>
// @date@	2004-08-06
// @uri@	news://cf0r1f$u4n$1@digitaldaemon.com

struct MyStruct{
	static MyStruct opCall(){
		MyStruct s;
		return s;
	}
}

int main(){
	MyStruct s = MyStruct();
	return 0;
}