Added quickfix for REDUNDANT_NULLABLE.

This commit is contained in:
Jack Zhou
2013-02-04 12:20:12 -05:00
committed by Andrey Breslav
parent 93e3bd930e
commit 5ee9b2fdd1
5 changed files with 74 additions and 0 deletions
@@ -0,0 +1,4 @@
// "Remove redundant '?'" "true"
fun main(args : Array<String>) {
val x : Int? = 15
}