'Suppress warnings' as quick fix options

If no quick fix is available a special intention is shown
This commit is contained in:
Andrey Breslav
2013-09-22 19:24:46 +04:00
parent b379ab3ebd
commit a13b66c58e
79 changed files with 879 additions and 9 deletions
@@ -0,0 +1,7 @@
// "Suppress 'REDUNDANT_NULLABLE' for class D" "true"
class C {
class D {
fun foo(): String?<caret>? = null
}
}