Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
redeclarations
/
PropertyAndFunInClass.kt
blob: 6ec22e73dfcdaf947d7cbb8952afdd79b8d8828a [
file
]
// FIR_IDENTICAL
class
A
()
{
val a
:
Int
=
1
fun a
():
Int
=
2
}
class
B
()
{
fun b
():
Int
=
2
val b
:
Int
=
1
}