summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/resources/inlayProviders/kotlin.references.types.hints/hints.type.function.return.kt
blob: f8c387a27c5c1e3049bd74a957ccb174fe334cc3 (plain)
1
2
3
4
5
fun square(arg: Int) = arg * arg

class Int {
    operator fun times(other: Int): Int
}