/** * This file is licensed under the University of Illinois/NCSA Open Source License. See LICENSE.TXT for details. */ package edu.illinois.codingspectator; public class InlineTestFile { static final String CONSTANT= "TestConstant"; public static void main(String[] args) { System.out.println(CONSTANT); } }