Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f899cfcffd0a033719b670aa8e3e53cda9ded9a2
/
.
/
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"
}