Files
codeql/java/ql/test-kotlin2/library-tests/numlines/test.kt
2023-11-17 14:07:13 +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
}