Removed indeterministic test. We have analogous test for diagnostics, so it is not a big problem.

This commit is contained in:
Evgeny Gerashchenko
2015-04-13 15:21:40 +03:00
parent 993ba6161f
commit 9de5acf9a6
2 changed files with 0 additions and 48 deletions
@@ -1,42 +0,0 @@
//package a {
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="[DEBUG] Resolved to error element">afoo</error>
//}
//package b {
fun bfoo() = bbar()
fun bbar() = <error descr="[TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM] Type checking has run into a recursive problem. Easiest workaround: specify types of your declarations explicitly">bfoo()</error>
//}
//package c {
fun cbazz() = cbar()
fun cfoo() = <error descr="[TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM] Type checking has run into a recursive problem. Easiest workaround: specify types of your declarations explicitly">cbazz()</error>
fun cbar() = cfoo()
//}
//package ok {
//
// package a {
val okafoo = okabar()
fun okabar() : Int = okafoo
// }
//
// package b {
fun okbfoo() : Int = okbbar()
fun okbbar() = okbfoo()
// }
//
// package c {
fun okcbazz() = okcbar()
fun okcfoo() : Int = okcbazz()
fun okcbar() = okcfoo()
// }
//}