Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
native
/
native.tests
/
testData
/
lldb
/
canInspectClasses.kt
blob: 8cb37fc6d496540101944248d9b40e38f1d18002 [
file
]
// KIND: STANDALONE_LLDB
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"
}