Stricter type checks in 'convert to range' intention (#1073)

#KT-17079 #KT-17762 Fixed
This commit is contained in:
nd
2017-05-09 09:31:32 +02:00
committed by Dmitry Jemerov
parent e76f1acc0b
commit e20e097a63
11 changed files with 156 additions and 11 deletions
@@ -0,0 +1,5 @@
// IS_APPLICABLE: false
// DISABLE-ERRORS
fun foo(bar: Char) {
bar > 1 && 2 > bar<caret>
}