aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-multiplatform-example/src/customJdk9/kotlin/demo
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gradle/dokka-multiplatform-example/src/customJdk9/kotlin/demo')
-rw-r--r--examples/gradle/dokka-multiplatform-example/src/customJdk9/kotlin/demo/CustomSourceSetFile.kt11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/gradle/dokka-multiplatform-example/src/customJdk9/kotlin/demo/CustomSourceSetFile.kt b/examples/gradle/dokka-multiplatform-example/src/customJdk9/kotlin/demo/CustomSourceSetFile.kt
new file mode 100644
index 00000000..5b642416
--- /dev/null
+++ b/examples/gradle/dokka-multiplatform-example/src/customJdk9/kotlin/demo/CustomSourceSetFile.kt
@@ -0,0 +1,11 @@
+package demo
+
+/**
+ * This class demonstrates custom dokka source sets
+ */
+class CustomSourceSetFile {
+ /**
+ * This function will not do anything
+ */
+ fun thisIsAFunction() {}
+}