Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
name
/
classInheritanceExtensions.fir.kt
blob: 76439b0dfa7f039d094cdee809acfea90a4c54c6 [
file
]
// FIR_DIFFERENCE
// This case is only relevant for the JS Legacy BE and is not applicable to the JS IR backend,
// as the IR BE can resolve such name collisions.
open
class
Class
{
fun
Int
.
test
()
{}
val
Int
.
test
get
()
=
0
}
class
MyClass1
:
Class
()