view run/delegate_06.d @ 1611:9f94be6a5ace

Fix typo in last commit.
author Christian Kamm <kamm incasoftware de>
date Sun, 10 May 2009 10:56:43 +0200
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;
}