mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-27 08:31:28 +00:00
7 lines
137 B
Java
7 lines
137 B
Java
package test;
|
|
|
|
public class Super {
|
|
public int field = 55;
|
|
private int privateField = 54;
|
|
public int method() { return 1; }
|
|
} |