Remove backend tests on old inference
Also remove any mentions of NewInference, and rename some tests.
This commit is contained in:
Vendored
+1
-3
@@ -1,5 +1,3 @@
|
||||
// !LANGUAGE: +NewInference, +FunctionReferenceWithDefaultValueAsOtherType
|
||||
|
||||
fun use(fn: (Int) -> Any) = fn(42)
|
||||
|
||||
class C(vararg xs: Int)
|
||||
@@ -12,4 +10,4 @@ fun testConstructor() = use(::C)
|
||||
|
||||
fun testInnerClassConstructor(outer: Outer) = use(outer::Inner)
|
||||
|
||||
fun testInnerClassConstructorCapturingOuter() = use(Outer()::Inner)
|
||||
fun testInnerClassConstructorCapturingOuter() = use(Outer()::Inner)
|
||||
|
||||
Reference in New Issue
Block a user