Support 'suppress for statement' quick fix

#KT-3319 Fixed
This commit is contained in:
Andrey Breslav
2013-09-23 00:20:30 +04:00
parent 5b9d10d74e
commit fc70a65f99
94 changed files with 1064 additions and 40 deletions
@@ -0,0 +1,6 @@
// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
fun foo() {
[suppress("UNNECESSARY_NOT_NULL_ASSERTION")]
(1<caret>!! ?: 0)
}