mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
2 lines
188 B
Kotlin
2 lines
188 B
Kotlin
fun f(n: Number, b: Byte) = n.toByte() + n.toShort() + n.toInt() + n.toLong() + n.toFloat() + n.toDouble() + b.toByte() + b.toShort() + b.toInt() + b.toLong() + b.toFloat() + b.toDouble()
|