Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
d7190af72d77e4daae1bb7c6615890b80652f28b
/
.
/
native
/
native.tests
/
testData
/
klib
/
dump-metadata
/
TopLevelPropertiesWithClassesRootPackage.kt
blob: ffdf56c0489e2944c9f0a7e2ac2b51c99308d5cc [
file
]
@file
:
Suppress
(
"UNUSED_PARAMETER"
)
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