10 lines
149 B
Kotlin
Vendored
10 lines
149 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FILE: A.java
|
|
public class A {
|
|
public static void main(String[] args) {}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
fun main() {
|
|
A.main(arrayOf())
|
|
} |