Created
November 17, 2010 17:47
-
-
Save skyler/703716 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class T | |
{ | |
private static final String FOO; | |
static { | |
FOO = "baz"; | |
} | |
public static void main(String[] args) | |
{ | |
System.out.println(FOO); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment