Create From Usage: Fix rendering of nullable types
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user