Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassByFqName
/
LocalFunctions.kt
blob: a8f2f2c2256491b0c49323139132294424bbe70d [
file
]
// p.A
package
p
class
A
{
init
{
fun localFunInInit
()
{}
}
constructor
(
x
:
Int
)
{
fun localFunInConstructor
()
{}
}
fun memberFun
()
{
fun localFunInMemberFun
()
{}
}
val
property
:
Int
get
()
{
fun localFunInPropertyAccessor
()
{}
return
1
}
}