view run/final_02.d @ 15:fa94281987cf

added tests for final keyword
author unknown
date Fri, 08 Oct 2004 07:36:36 +0000
parents
children f87ba6507260
line wrap: on
line source

class Parent{
	final private int test(){
		return 3;
	}
}

class Child : Parent{
	int test(){
		return 5;
	}
}

int main(){
	Child c = new Child();
	assert(c.test()==5);
	return 0;
}