11 lines
248 B
Kotlin
Vendored
11 lines
248 B
Kotlin
Vendored
package test.pkg
|
|
|
|
actual class PointerEvent {
|
|
actual val keyboardModifiers = PointerKeyboardModifiers(42)
|
|
}
|
|
|
|
internal actual typealias NativePointerKeyboardModifiers = Int
|
|
|
|
fun test() {
|
|
val m = PointerEvent().keyboardModifiers.packedValue
|
|
} |