Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2fdfab0f493a461389254a03e5dec7d817b37bd3 (plain) (blame)
1
2
3
4
5
class C {
	  public int      a      = 5;
	  String          ssssss = "1234567890"; // comment 1
	  private boolean bbbbb  = true;         // comment 2
}

Back to the top