Add test about dependsOn dependency and stdlib-common
This commit is contained in:
committed by
Space Team
parent
6c062b0cea
commit
520ae725d1
+11
@@ -0,0 +1,11 @@
|
||||
package test.pkg
|
||||
|
||||
actual class PointerEvent {
|
||||
actual val keyboardModifiers = PointerKeyboardModifiers(42)
|
||||
}
|
||||
|
||||
internal actual typealias NativePointerKeyboardModifiers = Int
|
||||
|
||||
fun test() {
|
||||
val m = PointerEvent().keyboardModifiers.packedValue
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
package test.pkg
|
||||
|
||||
expect class PointerEvent {
|
||||
val keyboardModifiers: PointerKeyboardModifiers
|
||||
}
|
||||
|
||||
expect class NativePointerKeyboardModifiers
|
||||
|
||||
@kotlin.jvm.JvmInline
|
||||
value class PointerKeyboardModifiers(val packedValue: NativePointerKeyboardModifiers)
|
||||
Reference in New Issue
Block a user