aboutsummaryrefslogtreecommitdiff
path: root/runners/gradle-integration-tests/testData/basic/src/main/kotlin/demo
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-01-17 15:01:18 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-01-20 08:34:33 +0100
commit4417ab37e0e16663bde81efd5207c0e1929b881a (patch)
tree883e76b7a33d8ece6c8a8c8756be61c5ab5d6c88 /runners/gradle-integration-tests/testData/basic/src/main/kotlin/demo
parent0e125fce5c09b1a0a8413d2e6be443e29d4ebebe (diff)
downloaddokka-4417ab37e0e16663bde81efd5207c0e1929b881a.tar.gz
dokka-4417ab37e0e16663bde81efd5207c0e1929b881a.tar.bz2
dokka-4417ab37e0e16663bde81efd5207c0e1929b881a.zip
Move the Gradle integration tests back to `:runners`
Diffstat (limited to 'runners/gradle-integration-tests/testData/basic/src/main/kotlin/demo')
-rw-r--r--runners/gradle-integration-tests/testData/basic/src/main/kotlin/demo/HelloWorld.kt45
1 files changed, 45 insertions, 0 deletions
diff --git a/runners/gradle-integration-tests/testData/basic/src/main/kotlin/demo/HelloWorld.kt b/runners/gradle-integration-tests/testData/basic/src/main/kotlin/demo/HelloWorld.kt
new file mode 100644
index 00000000..3d7bcb51
--- /dev/null
+++ b/runners/gradle-integration-tests/testData/basic/src/main/kotlin/demo/HelloWorld.kt
@@ -0,0 +1,45 @@
+package demo
+
+import p1.MyBinaryClass
+
+/**
+ * This class supports greeting people by name.
+ *
+ * @property name The name of the person to be greeted.
+ */
+class Greeter(val name: String) {
+
+ /**
+ * Prints the greeting to the standard output.
+ */
+ fun greet() {
+ println("Hello $name!")
+ }
+}
+
+fun main(args: Array<String>) {
+ Greeter(args[0]).greet()
+}
+
+val str = "Hello! ".repeat(4)
+val x: (a: String, b: Int) -> Int = { a, b -> 0 }
+
+interface SomeInterface
+private class SomeImpl : SomeInterface
+
+fun SomeInterface.constructor(): SomeInterface {
+ return SomeImpl()
+}
+
+open class SomeType
+class SomeSubType : SomeType()
+
+fun SomeType.constructor(): SomeType {
+ return SomeSubType()
+}
+
+
+annotation class A(val p: String)
+
+val MyBinaryClass.test get() = s()
+