Checked that KT-9006 has been fixed

#KT-9006 Obsolete
This commit is contained in:
Valentin Kipyatkov
2015-10-07 11:14:40 +03:00
parent b5ee84075a
commit 4256fb9c6e
2 changed files with 15 additions and 0 deletions
@@ -0,0 +1,9 @@
class A private constructor(f: Boolean) {
constructor(): this(true)
}
fun test() {
val a = A(<caret>)
}
//Text: (<no parameters>), Disabled: false, Strikeout: false, Green: true
@@ -190,6 +190,12 @@ public class ParameterInfoTestGenerated extends AbstractParameterInfoTest {
doTest(fileName);
}
@TestMetadata("PrivateConstructor.kt")
public void testPrivateConstructor() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/parameterInfo/functionCall/PrivateConstructor.kt");
doTest(fileName);
}
@TestMetadata("Simple.kt")
public void testSimple() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/parameterInfo/functionCall/Simple.kt");