mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-14 15:51:05 +00:00
8 lines
138 B
Java
8 lines
138 B
Java
package test;
|
|
|
|
public class Super {
|
|
public int field = 55;
|
|
private int privateField = 54;
|
|
public int method() { return 1; }
|
|
}
|