// This program can be executed, even though it has compilation warnings
public class Warnings {

	public static void main(String[] args) {
	    int i;  // Warning the value of the local variable is not used
		System.out.println("Program was able to run");
	}

}
