Fix test about version requirement

We began to write version requirement on declarations with `Result` and
 now (after bootstrap) we are getting error in this test because of that
 version requirement.

 see 908be10bf4
This commit is contained in:
Mikhail Zarechenskiy
2018-09-20 17:22:57 +03:00
parent a4f5cced47
commit 09cd038e4b
2 changed files with 0 additions and 2 deletions
@@ -1,6 +1,5 @@
package test
@Suppress("UNSUPPORTED_FEATURE")
inline class IC(val x: String)
typealias ICAlias = IC
@@ -175,7 +175,6 @@ abstract class AbstractVersionRequirementTest : TestCaseWithTmpdir() {
fun testInlineClassesAndRelevantDeclarations() {
doTest(
VersionRequirement.Version(1, 3), DeprecationLevel.ERROR, null, ProtoBuf.VersionRequirement.VersionKind.LANGUAGE_VERSION, null,
customLanguageVersion = LanguageVersion.KOTLIN_1_2,
fqNames = listOf(
"test.IC",
"test.Ctor.<init>",