Create DeprecatedLambdaSyntaxFix for whole project

This commit is contained in:
Stanislav Erokhin
2015-03-25 21:52:02 +03:00
parent 3fd8c5e980
commit f40b503454
10 changed files with 258 additions and 64 deletions
@@ -0,0 +1,9 @@
// "Migrate lambda syntax in whole project" "true"
val a =
fun (): Int {
val b =
fun (): Int = 5
return b()
}