Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
classes
/
newInstanceDefaultConstructor.kt
blob: 2e91e8ea973c8276dd4af2f20e8fc4dfab0f59dd [
file
]
class
SimpleClass
()
{
fun foo
()
=
610
}
fun test
()
:
Int
{
val c
=
SimpleClass
()
return
c
.
foo
()
}