diff options
Diffstat (limited to 'integration-tests/gradle/projects/it-multiplatform-0/src/desktopMain')
2 files changed, 0 insertions, 16 deletions
diff --git a/integration-tests/gradle/projects/it-multiplatform-0/src/desktopMain/kotlin/it/mpp0/CPointerExtension.kt b/integration-tests/gradle/projects/it-multiplatform-0/src/desktopMain/kotlin/it/mpp0/CPointerExtension.kt deleted file mode 100644 index 342a749e..00000000 --- a/integration-tests/gradle/projects/it-multiplatform-0/src/desktopMain/kotlin/it/mpp0/CPointerExtension.kt +++ /dev/null @@ -1,11 +0,0 @@ -package it.mpp0 - -import kotlinx.cinterop.CPointed -import kotlinx.cinterop.CPointer - -/** - * Will print the raw value - */ -fun CPointer<CPointed>.customExtension() { - println(this.rawValue) -} diff --git a/integration-tests/gradle/projects/it-multiplatform-0/src/desktopMain/kotlin/it/mpp0/ExpectedClass.kt b/integration-tests/gradle/projects/it-multiplatform-0/src/desktopMain/kotlin/it/mpp0/ExpectedClass.kt deleted file mode 100644 index 19070a96..00000000 --- a/integration-tests/gradle/projects/it-multiplatform-0/src/desktopMain/kotlin/it/mpp0/ExpectedClass.kt +++ /dev/null @@ -1,5 +0,0 @@ -package it.mpp0 - -actual class ExpectedClass { - actual val platform: String = "linux" -} |