class Test{
	Character foo(Character bar){
		return bar;
	}

	bla(blub, umu, lala){
		blub = this.foo(umu);
		return blub;
	}

}