view run/delegate_06.d @ 1601:90bc51a580b7

pragma(lib, ...) is only allowed in declarations as of 1.037.
author Christian Kamm <kamm incasoftware de>
date Sun, 04 Jan 2009 22:42:52 +0100
parents 2c9eb7937bb2
children
line wrap: on
line source

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

module dstress.run.delegate_06;

class MyClass{
	int test(){
		return 3;
	}
}

int main(){
	int delegate() dl;
	
	MyClass c = new MyClass();
	dl = &c.test;
	assert(dl()==3);

	return 0;
}