view run/i/interface_27_B.d @ 1609:3c803614a8fb

Add a few missing abstracts.
author Christian Kamm <kamm incasoftware de>
date Sun, 26 Apr 2009 13:38:23 +0200
parents 40a86c79a1c4
children
line wrap: on
line source

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

// @author@	<default_357-line@yahoo.de>
// @date@	2007-06-13
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1264
// @desc@	[Issue 1264] New: anon class in anon delegate in private member == ICE

module dstress.run.i.interface_27_B;

abstract class X{
	abstract int foo();
}

int main() {
	int check = 0x1234ABCD;

	X o = null;
	
	(){
		o = new class X{
			int foo() {
				return 1 + check;
			}
		};
	}();

	if(0x1234ABCE != o.foo()){
		assert(0);
	}
	if(0x1234ABCD != check){
		assert(0);
	}

	return 0;
}