view nocompile/delegate_09.d @ 338:1f6cf5ccfbc9

1) updated rules to dmd-0.119 2) added __DSTRESS_ELINE__ tags
author thomask
date Mon, 21 Mar 2005 20:45:57 +0000
parents 2c9eb7937bb2
children
line wrap: on
line source

// $HeaderURL$
// $Date$
// $Author$

// delegates can only be initialized with non-static member functions

// __DSTRESS_ELINE__ 19

module dstress.nocompile.delegate_09;

enum MyEnum{
	test
}

int main(){
	int delegate() dl;
	
	MyEnum e;
	dl = &e.test;

	return 0;
}