Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
name
/
propertyAndMethodInSubclass.kt
blob: 824aa4ae423f54a99f47ce66cbeaf493f2f0451c [
file
]
// FIR_IDENTICAL
package
foo
open
class
Super
{
<!
JS_NAME_CLASH
!>
val foo
<!>
=
23
}
class
Sub
:
Super
()
{
<!
JS_NAME_CLASH
!>
fun foo
()<!>
=
42
}