package p;

public class FieldsWithJavadoc {
	
	/**
	 * the test field
	 */
	String[] test;
	
	/** val field */
	int[] val;
}