Skip to content

Instantly share code, notes, and snippets.

@fkaa
Created June 9, 2014 15:01
Show Gist options
  • Select an option

  • Save fkaa/ce5fb7f3558a5fbf7d47 to your computer and use it in GitHub Desktop.

Select an option

Save fkaa/ce5fb7f3558a5fbf7d47 to your computer and use it in GitHub Desktop.
public class Mystery {
public Mystery() {
int a = 0;
{
int b = 7;
a = b;
}
int b;
System.out.println(a + " , " + b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment