Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
native
/
inlineExtensionToNative.kt
blob: 1a0f3803192a290da7b139dea37f46623349ba79 [
file
]
// FIR_IDENTICAL
external
class
A
{
class
B
}
inline
fun A
.
foo
(
x
:
Int
):
String
=
asDynamic
().
foo
(
x
)
inline
operator
fun A
.
get
(
x
:
Int
):
String
=
asDynamic
()[
x
]
inline
operator
fun A
.
B
.
get
(
x
:
Int
):
String
=
asDynamic
()[
x
]