Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
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
()
}