Fixed KT-15270 Quickfix to migrate from @native***

This commit is contained in:
qx
2017-05-03 17:32:35 +03:00
parent 11bc0d87b8
commit 8ba61ce7aa
22 changed files with 427 additions and 10 deletions
@@ -0,0 +1,11 @@
// "Fix with 'asDynamic'" "true"
// JS
class A
external class B<T: A> {
}
@Suppress("NOTHING_TO_INLINE")
inline fun <T : A, T2> B<T>.exp(t: T, t2: T2) {
asDynamic()(t, t2)
}