Support DslMarker on type aliases

This commit is contained in:
Dmitry Petrov
2017-08-09 11:29:11 +03:00
parent 223acbcfeb
commit c180de563f
6 changed files with 130 additions and 0 deletions
@@ -17595,6 +17595,18 @@ public class DiagnosticsTestGenerated extends AbstractDiagnosticsTest {
doTest(fileName);
}
@TestMetadata("dslMarkerOnTypealias.kt")
public void testDslMarkerOnTypealias() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/diagnostics/tests/resolve/dslMarker/dslMarkerOnTypealias.kt");
doTest(fileName);
}
@TestMetadata("dslMarkerWithTypealiasRecursion.kt")
public void testDslMarkerWithTypealiasRecursion() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/diagnostics/tests/resolve/dslMarker/dslMarkerWithTypealiasRecursion.kt");
doTest(fileName);
}
@TestMetadata("inheritedMarker.kt")
public void testInheritedMarker() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/diagnostics/tests/resolve/dslMarker/inheritedMarker.kt");