d69c61c972
Preserve white spaces for top members (classes, package statements, comments)
8 lines
147 B
Kotlin
8 lines
147 B
Kotlin
import java.util.Calendar
|
|
|
|
abstract class MyCalendar() : Calendar() {
|
|
public open fun foo() {
|
|
var i: Int = Calendar.ALL_STYLES
|
|
}
|
|
}
|