Files
codeql/java/ql/test-kotlin1/library-tests/numlines/test.kt
2023-11-21 15:28:12 +00:00

28 lines
225 B
Kotlin

fun foo ( x : Int ) {
val y = ( x + 1 )
}
// test
val x = 4
/*
test
*/
/**
test
*/
val y = 5 // test
class Foo {
fun bar() {
// comment
return
}
val someField = 3
}