aboutsummaryrefslogtreecommitdiff
path: root/src/testA
diff options
context:
space:
mode:
Diffstat (limited to 'src/testA')
-rw-r--r--src/testA/kotlin/aMarker.kt3
-rw-r--r--src/testA/kotlin/pkg/Kt.kt12
2 files changed, 15 insertions, 0 deletions
diff --git a/src/testA/kotlin/aMarker.kt b/src/testA/kotlin/aMarker.kt
new file mode 100644
index 0000000..86d0391
--- /dev/null
+++ b/src/testA/kotlin/aMarker.kt
@@ -0,0 +1,3 @@
+@file:Suppress("unused") // Exists only so we can find the testA/kotlin classes on the classpath
+
+private const val dummy = 1
diff --git a/src/testA/kotlin/pkg/Kt.kt b/src/testA/kotlin/pkg/Kt.kt
new file mode 100644
index 0000000..9c42707
--- /dev/null
+++ b/src/testA/kotlin/pkg/Kt.kt
@@ -0,0 +1,12 @@
+package pkg
+
+import a.pkg.A
+
+class Kt : A() {
+ override fun getSyntheticA(): A {
+ return this
+ }
+
+ override fun setSyntheticA(arg: A) {
+ }
+} \ No newline at end of file