Test super calls in enum literals

This commit is contained in:
Pavel V. Talanov
2014-10-10 18:12:56 +04:00
parent 8e6618920d
commit b2c288b62a
4 changed files with 62 additions and 0 deletions
@@ -0,0 +1,18 @@
package test
fun box() = E.E1.f() + E.E2.f()
enum class E {
E1 {
override fun f(): String {
return super<E>.f() + "O"
}
}
E2 {
override fun f(): String {
return super.f() + "K"
}
}
open fun f() = ""
}
@@ -2715,6 +2715,12 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
doTest(fileName);
}
@TestMetadata("superCallInEnumLiteral.kt")
public void testSuperCallInEnumLiteral() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/box/enum/superCallInEnumLiteral.kt");
doTest(fileName);
}
@TestMetadata("toString.kt")
public void testToString() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/box/enum/toString.kt");
@@ -42,4 +42,8 @@ public class EnumTest extends SingleFileTranslationTest {
public void testEnumInheritedFromTrait() throws Exception {
checkFooBoxIsOk();
}
public void testSuperCallInEnumLiteral() throws Exception {
checkFooBoxIsOk();
}
}
@@ -0,0 +1,34 @@
/*
* Copyright 2010-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package foo
fun box() = E.E1.f() + E.E2.f()
enum class E {
E1 {
override fun f(): String {
return super<E>.f() + "O"
}
}
E2 {
override fun f(): String {
return super.f() + "K"
}
}
open fun f() = ""
}