Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
native
/
inlineExtensionToNative.kt
blob: fb4512bbb630fa2c2ece85a1699890ddb9aa5e71 [
file
]
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
]