Checked that "KT-6898 References to type arguments of unresolved class name are not resolved" has been fixed

This commit is contained in:
Valentin Kipyatkov
2015-08-11 13:51:29 +03:00
parent ae552f49a7
commit 41f80cde9e
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,3 @@
val v: UnknownClass<<caret>String>()
// REF: (kotlin).String
@@ -377,6 +377,12 @@ public class ReferenceResolveTestGenerated extends AbstractReferenceResolveTest
doTest(fileName);
}
@TestMetadata("TypeArgumentUnresolvedConstructor.kt")
public void testTypeArgumentUnresolvedConstructor() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/resolve/references/TypeArgumentUnresolvedConstructor.kt");
doTest(fileName);
}
@TestMetadata("TypeArgumentWrongNumber.kt")
public void testTypeArgumentWrongNumber() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/resolve/references/TypeArgumentWrongNumber.kt");