mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
122 B
Kotlin
12 lines
122 B
Kotlin
|
|
fun <T> Foo<T>.bar(): Boolean {
|
|
return true
|
|
}
|
|
|
|
class Foo<T> {
|
|
fun foo(): Boolean {
|
|
return bar()
|
|
}
|
|
}
|
|
|