Drop result value if it's not needed

This commit is contained in:
Valentin Kipyatkov
2016-11-10 21:14:25 +03:00
parent adbece82ef
commit 55979aca74
14 changed files with 64 additions and 14 deletions
@@ -6,6 +6,6 @@ val File.prop: String
get() = absolutePath
fun foo(file: File) {
file.absolutePath
val v = file.absolutePath
}