Skip to content

Instantly share code, notes, and snippets.

@usagi
Created April 13, 2012 06:32
Show Gist options
  • Select an option

  • Save usagi/2374402 to your computer and use it in GitHub Desktop.

Select an option

Save usagi/2374402 to your computer and use it in GitHub Desktop.
class c {
c() { this.x = 123; }
int x;
}
class Main {
public static void main(String[] args){
c a = new c();
System.out.println(a.x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment