[FIR] Move tracking candidate applicability from CheckerSink to Candidate

This commit is contained in:
Dmitriy Novozhilov
2020-11-10 17:54:52 +03:00
parent f1ac1f177b
commit 67b262aa34
10 changed files with 31 additions and 36 deletions
@@ -5,5 +5,5 @@ fun interface Bar {
operator fun Bar.plus(b: Bar): String = invoke() + b.invoke()
fun box(): String {
return { "O" } <!INAPPLICABLE_CANDIDATE!>+<!> { "K" }
return { "O" } + { "K" }
}