File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- class Comments4 {
1+ class Comments0 {
22
33 static void bar (int x ) {
44 System .out .println (x );
Original file line number Diff line number Diff line change 1- class Ctor4 {
1+ class Ctor0 {
22
33 public int m_foo ;
44 public int m_bar ;
55
66
77
8- public Ctor4 () {
8+ public Ctor0 () {
99 this (/* foo */ 0 , /* bar */ 0 );
1010 }
1111
12- public Ctor4 (int p_foo ) {
12+ public Ctor0 (int p_foo ) {
1313 this (p_foo , 0 );
1414
1515 }
1616
17- public Ctor4 (int p_foo , int p_bar ) {
17+ public Ctor0 (int p_foo , int p_bar ) {
1818 m_foo = p_foo ;
1919 m_bar = p_bar ;
2020 }
2121
2222
2323 public static void main (String [] args ) {
24- Ctor4 a = new Ctor4 ();
24+ Ctor0 a = new Ctor0 ();
2525 System .out .println (a .m_foo );
2626 System .out .println (a .m_bar );
2727
28- Ctor4 b = new Ctor4 (1 );
28+ Ctor0 b = new Ctor0 (1 );
2929 System .out .println (b .m_foo );
3030 System .out .println (b .m_bar );
3131
3232
33- Ctor4 c = new Ctor4 (2 , 3 );
33+ Ctor0 c = new Ctor0 (2 , 3 );
3434 System .out .println (c .m_foo );
3535 System .out .println (c .m_bar );
3636
You can’t perform that action at this time.
0 commit comments