Reduce highlighting range for UNCHECKED_CAST

#KT-18985 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2017-07-28 16:41:21 +03:00
parent 8f8143d3ed
commit ae3497c6ce
21 changed files with 41 additions and 41 deletions
@@ -3,6 +3,6 @@ package h
public class MyClass<S, T>(<!UNUSED_PARAMETER!>param<!>: MyClass<S, T>) {
fun test() {
val result: MyClass<Any, Any>? = null
MyClass<S, Any>(<!UNCHECKED_CAST!>result as MyClass<S, Any><!>)
MyClass<S, Any>(result <!UNCHECKED_CAST!>as MyClass<S, Any><!>)
}
}