package p;

public class Foo {
	
	// Very simple test
	
	void foo() { 	// <-- invoke here
		
	}
	
	{
		foo();
	}

}
