Updated quasi-indeterministic test data. After introducing new line marker provider, which invokes lazy resolution, diagnostic is reported on different element.

This commit is contained in:
Evgeny Gerashchenko
2015-04-08 19:03:31 +03:00
parent c62b1fac69
commit 4ba0d2aba5
@@ -1,7 +1,7 @@
//package a {
val afoo = abar()
val afoo = <error descr="[TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM] Type checking has run into a recursive problem. Easiest workaround: specify types of your declarations explicitly">abar()</error>
fun abar() = <error descr="[TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM] Type checking has run into a recursive problem. Easiest workaround: specify types of your declarations explicitly">afoo</error>
fun abar() = <error descr="[DEBUG] Resolved to error element">afoo</error>
//}
//package b {