view run/function_02.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents c848807fdfcb
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Benjamin Herr
// @date@	2005-04-09

module dstress.run.function_02;

int status;

class Foo {
        this(int i) {
                this.i = i;
        }
 
        void f() {
		assert(i==123);
		status++;
        }
 
        int i;
}
 
int main() {
	void function(Foo f) fg = cast(void function(Foo f)) &Foo.f;

	assert(status==0);
	fg(new Foo(123));
	assert(status==1);
 
        return 0;
}