mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +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()
|
|
}
|
|
}
|
|
|