Files
kotlin-fork/compiler/testData/psi/semicolonBetweenDeclarations.kt
T
2015-05-20 09:24:54 +03:00

28 lines
281 B
Kotlin
Vendored

package foo;
fun foo1() {};
val x = 1;;;;
class A() {
val x = 1;
fun foo() {
class A1;
val x = 1;
}
fun bar();
init {};
constructor() : super();
companion object {};
};
fun foo;
val;
class B {
val;
init;
constructor;
}