[FIR] Implement suppressing diagnostics with @Suppress

This commit is contained in:
Dmitriy Novozhilov
2021-02-01 18:34:03 +03:00
parent 459a2886a0
commit ebced14db2
20 changed files with 376 additions and 43 deletions
@@ -0,0 +1,6 @@
fun foo(x: String) {}
@Suppress("INAPPLICABLE_CANDIDATE")
fun bar() {
foo(10)
}