view run/c/class_18_B.d @ 1090:f4e98d870b57

pre DMD-0.163 review
author thomask
date Thu, 20 Jul 2006 14:47:29 +0000
parents 27beca9898cc
children
line wrap: on
line source

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

// @author@	Ilya Zaitseff <sark7@mail333.com>
// @date@	2005-08-29
// @uri@	news:op.sv8t4kggaaezs2@ilya.tec.amursk.ru

module dstress.run.c.class_18_B;

class Foo {
	const int x = 1;

	static class Foo {
		const int x = 2;
	}

	alias .Foo gFoo;

	static class Bar : gFoo{
	}
}

int main(){
	Foo.Bar a = new Foo.Bar;
	if(Foo.x != 1){
		assert(0);
	}
	if(Foo.Foo.x != 2){
		assert(0);
	}
	if(a.x != 1){
		assert(0);
	}

	return 0;
}