JVM IR: Generate synthetic final implementation methods in SAM wrappers

This commit is contained in:
Steven Schäfer
2020-10-28 18:00:44 +01:00
committed by Alexander Udalov
parent a475fa2a21
commit 68e2d0d245
5 changed files with 38 additions and 1 deletions
@@ -4425,6 +4425,11 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
public void testSamWrapperSyntheticFlags() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/sam/samWrapperSyntheticFlags.kt");
}
@TestMetadata("samWrapperSyntheticImplementationMethod.kt")
public void testSamWrapperSyntheticImplementationMethod() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/sam/samWrapperSyntheticImplementationMethod.kt");
}
}
@TestMetadata("compiler/testData/codegen/bytecodeText/statements")