Scala REPL: How to find function type?

In Scala REPL one can find value types: scala> val x = 1 x: Int = 1 scala> :t x Int Yet Scala REPL does not show the type information for functions: scala> def inc(...