b44dc55109
There was a refactoring of AbstractDiagnosticsTest in 9052ef06 which
contains bug that `setupEnvironment` for AbstractDiagnosticsTestUsingJavac
was not called, so for last year tests `UsingJavac` had no difference
with usual diagnostics tests which causes some contradictions in test data
22 lines
536 B
Kotlin
Vendored
22 lines
536 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !SKIP_JAVAC
|
|
// FIR_IDENTICAL
|
|
// !LANGUAGE: +InlineClasses
|
|
|
|
package kotlin.jvm
|
|
|
|
annotation class JvmInline
|
|
|
|
@JvmInline
|
|
value class UInt(val x: Int)
|
|
|
|
@JvmInline
|
|
value class UIntArray(private val storage: IntArray) : Collection<UInt> {
|
|
public override val size: Int get() = storage.size
|
|
|
|
override operator fun iterator() = TODO()
|
|
override fun contains(element: UInt): Boolean = TODO()
|
|
override fun containsAll(elements: Collection<UInt>): Boolean = TODO()
|
|
override fun isEmpty(): Boolean = TODO()
|
|
}
|