https://kotlinlang.org/docs/reference/reflection.html

上記リファレンスに載っている::オペレータによる関数名を直接指定する方法を試そうとしたのですが、エラーを吐いてしまいました。

C:\> C:\opt\kotlin\bin\kotlinc-jvm
Welcome to Kotlin version 1.0.3 (JRE 1.8.0_91-b15)
Type :help for help, :quit for quit
>>> fun isOdd(x: Int) = x % 2 != 0
>>> val numbers = listOf(1, 2, 3)
>>> numbers.filter(::isOdd)
error: left-hand side of a callable reference with a receiver parameter cannot be empty. Please specify the type of the receiver before '::' explicitly
numbers.filter(::isOdd)
                 ^

エラーによると「型を明示してください」と出ているようですが、正しくはどう書けばよいのでしょうか?