[FIR] add tests on annotations for delegated getter during implicit type phase

^KT-62874
This commit is contained in:
Dmitrii Gridin
2023-10-24 21:47:14 +02:00
committed by Space Team
parent 11e7500d9e
commit 1b636bf450
13 changed files with 547 additions and 0 deletions
@@ -9556,6 +9556,18 @@ public class DiagnosticTestGenerated extends AbstractDiagnosticTest {
runTest("compiler/testData/diagnostics/tests/delegatedProperty/defaultSetter.kt");
}
@Test
@TestMetadata("delegateWithAnnotationOnAccessorWithExplicitType.kt")
public void testDelegateWithAnnotationOnAccessorWithExplicitType() throws Exception {
runTest("compiler/testData/diagnostics/tests/delegatedProperty/delegateWithAnnotationOnAccessorWithExplicitType.kt");
}
@Test
@TestMetadata("delegateWithAnnotationOnAccessorWithImplicitType.kt")
public void testDelegateWithAnnotationOnAccessorWithImplicitType() throws Exception {
runTest("compiler/testData/diagnostics/tests/delegatedProperty/delegateWithAnnotationOnAccessorWithImplicitType.kt");
}
@Test
@TestMetadata("delegatedPropertyOverridedInTrait.kt")
public void testDelegatedPropertyOverridedInTrait() throws Exception {