Fix suppress at statement intention for asigmnents

There's no need now to consider precedence of element as
annotation preceding the beginning of block statement
is always now attached to the whole statement

 #KT-11673 Fixed
 #KT-12780 Fixed
This commit is contained in:
Denis Zharkov
2016-10-04 18:04:20 +03:00
parent 7353b08f09
commit 4910024cdb
16 changed files with 17 additions and 22 deletions
+1 -1
View File
@@ -2,5 +2,5 @@
fun foo() {
@Suppress("UNNECESSARY_NOT_NULL_ASSERTION")
(1<caret>!! < 2)
1<caret>!! < 2
}