// expect: total=14 code=6 comment=5 blank=3 shebang=0
// simple java fixture

package fixtures;

/*
 * Block comment
 */

public class Hello {
	public static void main(String[] args) {
		System.out.println("hi");
	}
}
