[NI] Fix error type approximation in ILTApproximatorConfiguration

#KT-31441 Fixed
This commit is contained in:
Dmitriy Novozhilov
2019-05-17 14:44:28 +03:00
parent 6f9ef0d4b6
commit f54653eb2b
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,10 @@
// COMPILER_ARGUMENTS: -XXLanguage:+NewInference
// IS_APPLICABLE: false
interface List<T>
class ArrayList<T> : List<T>
fun test() {
val list: List<*> = ArrayList<caret><Any?>()
}