Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06a89a0061108200c9df4e3eb11c8efa06e75eed
/
.
/
native
/
native.tests
/
testData
/
lldb
/
canInspectClasses.kt
blob: 56076178751b83b46a99f0892194c9781cb567ae [
file
]
// KIND: STANDALONE_LLDB
// FIR_IDENTICAL
fun main
(
args
:
Array
<
String
>)
{
val point
=
Point
(
1
,
2
)
val person
=
Person
()
return
}
data
class
Point
(
val x
:
Int
,
val y
:
Int
)
class
Person
{
override
fun toString
()
=
"John Doe"
}