mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
13 lines
167 B
Plaintext
Vendored
13 lines
167 B
Plaintext
Vendored
class T(val n: Int)
|
|
|
|
// SIBLING:
|
|
fun foo() {
|
|
__dummyTestFun__()
|
|
}
|
|
|
|
private fun __dummyTestFun__() {
|
|
if (true) {
|
|
val k = 1
|
|
T().n + k + 1
|
|
}
|
|
} |