Minor. Add tests
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
// WITH_STDLIB
|
||||
// WORKS_WHEN_VALUE_CLASS
|
||||
// LANGUAGE: +ValueClasses, +GenericInlineClassParameter
|
||||
|
||||
OPTIONAL_JVM_INLINE_ANNOTATION
|
||||
value class Test<T: Int>(val x: T) {
|
||||
private companion object {
|
||||
private const val CONSTANT = "OK"
|
||||
}
|
||||
|
||||
fun crash() = getInlineConstant()
|
||||
|
||||
private inline fun getInlineConstant(): String {
|
||||
return CONSTANT
|
||||
}
|
||||
}
|
||||
|
||||
fun box() = Test(1).crash()
|
||||
Reference in New Issue
Block a user