1afbb961ee
#KT-7135 Fixed
13 lines
157 B
Kotlin
Vendored
13 lines
157 B
Kotlin
Vendored
package test
|
|
|
|
object Utils {
|
|
public fun foo1(p: Int) {
|
|
}
|
|
|
|
public fun foo2(): Int {
|
|
return 1
|
|
}
|
|
|
|
public val staticField: Int = 1
|
|
}
|