Added quickfix for REDUNDANT_NULLABLE.
This commit is contained in:
committed by
Andrey Breslav
parent
93e3bd930e
commit
5ee9b2fdd1
@@ -0,0 +1,4 @@
|
||||
// "Remove redundant '?'" "true"
|
||||
fun main(args : Array<String>) {
|
||||
val x : Int? = 15
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// "Remove redundant '?'" "true"
|
||||
fun main(args : Array<String>) {
|
||||
val x : Int??<caret> = 15
|
||||
}
|
||||
Reference in New Issue
Block a user