Create From Usage: Fix rendering of nullable types

This commit is contained in:
Alexey Sedunov
2014-10-07 18:28:40 +04:00
parent ff082be524
commit 2b43aad4f9
14 changed files with 144 additions and 5 deletions
@@ -0,0 +1,6 @@
// "Create parameter 'foo'" "true"
fun test(n: Int,
foo: Int?) {
val t: Int? = foo
}
@@ -0,0 +1,5 @@
// "Create parameter 'foo'" "true"
fun test(n: Int) {
val t: Int? = <caret>foo
}