One more test added

This commit is contained in:
Valentin Kipyatkov
2015-08-12 16:41:13 +03:00
parent 1fd4d4fe11
commit 6fcb75cfb5
3 changed files with 18 additions and 0 deletions
@@ -0,0 +1,6 @@
// WITH_RUNTIME
fun <T : Thread> foo(t: T) {
t.<caret>setDaemon(true)
}
@@ -0,0 +1,6 @@
// WITH_RUNTIME
fun <T : Thread> foo(t: T) {
t.isDaemon = true
}
@@ -7630,5 +7630,11 @@ public class IntentionTestGenerated extends AbstractIntentionTest {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/usePropertyAccessSyntax/superCall.kt");
doTest(fileName);
}
@TestMetadata("typeParameterReceiver.kt")
public void testTypeParameterReceiver() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/intentions/usePropertyAccessSyntax/typeParameterReceiver.kt");
doTest(fileName);
}
}
}