aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/issues
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-02-09 03:15:52 +0100
committerGitHub <noreply@github.com>2023-02-09 03:15:52 +0100
commit7546efb83afa39770be5c7b9df72edc115e59a5b (patch)
tree0066c2b9e833e7dd7fd8cfafc3a1d05d15f40000 /core/testdata/issues
parent683f6bb418bada9c90d2ffbd5040b3968e1c3522 (diff)
downloaddokka-7546efb83afa39770be5c7b9df72edc115e59a5b.tar.gz
dokka-7546efb83afa39770be5c7b9df72edc115e59a5b.tar.bz2
dokka-7546efb83afa39770be5c7b9df72edc115e59a5b.zip
Remove old test data (#2824)
Diffstat (limited to 'core/testdata/issues')
-rw-r--r--core/testdata/issues/errorClasses.kt20
1 files changed, 0 insertions, 20 deletions
diff --git a/core/testdata/issues/errorClasses.kt b/core/testdata/issues/errorClasses.kt
deleted file mode 100644
index 9e966b3a..00000000
--- a/core/testdata/issues/errorClasses.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-
-class Test(var value: String) {
- fun brokenApply(v: String) = apply { value = v }
-
- fun brokenRun(v: String) = run {
- value = v
- this
- }
-
- fun brokenLet(v: String) = let {
- it.value = v
- it
- }
-
- fun brokenGenerics() = listOf("a", "b", "c")
-
- fun working(v: String) = doSomething()
-
- fun doSomething(): String = "Hello"
-} \ No newline at end of file