Misc: Configure stdlib in failing tests

This commit is contained in:
Alexey Sedunov
2018-07-02 18:48:00 +03:00
parent 65dad5eb74
commit 22d74276a0
4 changed files with 4 additions and 0 deletions
@@ -1,3 +1,4 @@
// WITH_RUNTIME
// NAME: Middle
open class Parent(open val bad: String) {
@@ -1,3 +1,4 @@
// WITH_RUNTIME
// NAME: Middle
open class Parent(open val bad: String) {
@@ -1,3 +1,4 @@
// WITH_RUNTIME
// SIBLING:
fun foo(list: <caret>List<(String?) -> Boolean>) {
@@ -1,5 +1,6 @@
typealias NullableStringToBooleanList = List<(String?) -> Boolean>
// WITH_RUNTIME
// SIBLING:
fun foo(list: NullableStringToBooleanList) {