Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
}