'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,8 @@
// "Suppress 'REDUNDANT_NULLABLE' for class object of C" "true"
class C {
[suppress("REDUNDANT_NULLABLE")]
class object {
var foo: String?<caret>? = null
}
}