Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
d7190af72d77e4daae1bb7c6615890b80652f28b
/
.
/
native
/
native.tests
/
testData
/
klib
/
dump-metadata
/
TopLevelPropertiesWithClassesCustomPackage.kt
blob: e699714afade9a9a69cda2c4e0f775c79fc18141 [
file
]
@file
:
Suppress
(
"UNUSED_PARAMETER"
)
package
custom
.
pkg
class
Foo
typealias
MyTransformer
=
(
String
)
->
Int
// top-level properties
val v1
=
1
val v2
=
"hello"
val v3
:
(
String
)
->
Int
=
{
it
.
length
}
val v4
:
MyTransformer
=
v3
object
Bar