"Remove redundant backticks": Fix false positive for yield #KT-25968 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-08-17 22:40:41 +09:00
committed by Mikhail Glukhikh
parent 362e6863ac
commit b34f32d4f3
3 changed files with 19 additions and 5 deletions
@@ -0,0 +1,7 @@
// PROBLEM: none
fun test() {
foo(<caret>`yield` = 1)
}
fun foo(yield: Int) {}