Replace deprecated lambda syntax in testData
It's done with similar constructions where possible trying to preserve intended behavior. Some usages are removed because they test exactly the feature that we are going to drop soon.
This commit is contained in:
@@ -4,7 +4,7 @@ class TestClass {
|
||||
}
|
||||
|
||||
fun testFun() {
|
||||
val lambda = {() -> TestClass() }
|
||||
val lambda = { -> TestClass() }
|
||||
lambda().<caret>
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user