Fix testdata after switching Kotlin to version 1.8

the corresponding features - GenericInlineClassParameter && DataObjects
- were turned on in 1.8 right after the last check build, therefore the
discrepancy went unnoticed
This commit is contained in:
Ilya Chernikov
2022-06-30 15:31:46 +02:00
committed by Space
parent 8a402bcacd
commit bc1e3667ff
8 changed files with 28 additions and 28 deletions
@@ -16,7 +16,7 @@ inline class TestRecursionInTypeArguments(val x: List<TestRecursionInTypeArgumen
inline class TestRecursionInArray(val x: Array<TestRecursionInArray>)
inline class TestRecursionInUpperBounds<T : TestRecursionInUpperBounds<T>>(val x: <!VALUE_CLASS_HAS_INAPPLICABLE_PARAMETER_TYPE!>T<!>)
inline class TestRecursionInUpperBounds<T : TestRecursionInUpperBounds<T>>(val x: T)
inline class Id<T>(val x: <!VALUE_CLASS_HAS_INAPPLICABLE_PARAMETER_TYPE!>T<!>)
inline class Id<T>(val x: T)
inline class TestRecursionThroughId(val x: Id<TestRecursionThroughId>)