Do not add functions and properties with inferred types as script class memebrs

This commit is contained in:
Andrey Breslav
2014-03-27 18:14:37 +04:00
parent 9a1f8b9cc6
commit f81bf5ea73
2 changed files with 13 additions and 5 deletions
@@ -7,5 +7,5 @@ fun fib(n: Int): Int {
return v
}
val result = fib(num)
val result: Int = fib(num)
12