Skip to content

Instantly share code, notes, and snippets.

@JackBracken
Created June 10, 2015 23:46
Show Gist options
  • Save JackBracken/73f05de90c09e202f381 to your computer and use it in GitHub Desktop.
Save JackBracken/73f05de90c09e202f381 to your computer and use it in GitHub Desktop.
[~]$ javac Test.java
Test.java:4: error: variable i might not have been initialized
System.out.print(i);
^
1 error
[~]$ cat Test.java
public class Test {
public static void main(String[] args) {
int i;
System.out.print(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment