[FIR-TEST] Add new testdata generated after changes in previous commit

This commit is contained in:
Dmitriy Novozhilov
2019-12-11 16:16:22 +03:00
parent e9c02a1cca
commit 2536fa0cd5
4578 changed files with 104067 additions and 1 deletions
+71
View File
@@ -0,0 +1,71 @@
// !DIAGNOSTICS: -UNUSED_PARAMETER
@kotlin.PublishedApi
class A
@kotlin.PublishedApi
internal class B
@kotlin.PublishedApi
private class C
@kotlin.PublishedApi
fun a() {}
@kotlin.PublishedApi
internal fun b() {}
@kotlin.PublishedApi
internal fun c() {}
@kotlin.PublishedApi
var ap = 1
@kotlin.PublishedApi
internal var bp = 1
@kotlin.PublishedApi
internal var c = 1
class E {
@kotlin.PublishedApi
fun a() {}
@kotlin.PublishedApi
internal fun b() {}
@kotlin.PublishedApi
private fun c() {}
@kotlin.PublishedApi
protected fun d() {}
@kotlin.PublishedApi
val ap = 1
@kotlin.PublishedApi
internal val bp = 1
@kotlin.PublishedApi
protected val c = 1
@kotlin.PublishedApi
private val d = 1
}
class D @kotlin.PublishedApi constructor() {
@kotlin.PublishedApi
constructor(a: String) : this()
@kotlin.PublishedApi
private constructor(a: String, b: String): this()
@kotlin.PublishedApi
internal constructor(a: String, b: String, c: String): this()
}