Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
localClasses
/
kt3389.kt
blob: abb515b1688f329f2e9cb096cdaba210aa2de988 [
file
]
package
t
class
Reproduce
{
fun test
():
String
{
data
class
Foo
(
val bar
:
String
,
val baz
:
Int
)
val foo
=
Foo
(
"OK"
,
5
)
return
foo
.
bar
}
}
fun box
()
:
String
{
return
Reproduce
().
test
()
}