Skip to content

Instantly share code, notes, and snippets.

@milaptank
Created September 15, 2016 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milaptank/c6800bfa405b4ff5c857b295c4379a41 to your computer and use it in GitHub Desktop.
Save milaptank/c6800bfa405b4ff5c857b295c4379a41 to your computer and use it in GitHub Desktop.
class Test
{
static int x = 100; // line 3
int y = 200; // line 4
public static void main(String []args)
{
final int z; // line 7
z = x + y; // line 8
System.out.println(z);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment