Cindy added C and toString

This commit is contained in:
Cindy 2023-03-21 13:18:32 +11:00 committed by Immanuel Alvaro Bhirawa
parent eaf5b694dd
commit 92641d81e1

8
src/gittest/C.java Normal file
View File

@ -0,0 +1,8 @@
package gittest;
public class C {
@Override
public String toString() {
return super.toString();
}
}