Adapted IDE to no explicit return type required for public declarations

This commit is contained in:
Valentin Kipyatkov
2015-09-16 13:07:58 +03:00
parent 1708ac8da3
commit 367b32c309
19 changed files with 9 additions and 80 deletions
@@ -3,5 +3,5 @@ interface T{
return i()
}
fun i(): Int = 1
fun i() = 1
}