class Test {
	private final int foo;
	
	public void setFoo(int bar) {
		foo = bar;
	}
	
	public Test() {
		
	}
	
	public static void main (String[] args) {
		Test qux = new Test();
		qux.setFoo(42);
		System.out.println("did it");
	}
}