mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-12 08:31:33 +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; }
|
|
} |