33e6a85a2d
We exclude testData pattern from copyright scope
19 lines
257 B
Kotlin
Vendored
19 lines
257 B
Kotlin
Vendored
package foo
|
|
|
|
class Foo {
|
|
val a: Int
|
|
|
|
fun foo(p: String) {
|
|
val x = 1.0f
|
|
<expr>print(x)</expr>
|
|
}
|
|
}
|
|
|
|
class Unrelated {
|
|
val unrelatedMember: Boolean
|
|
get() = true
|
|
}
|
|
|
|
fun unrelatedFunction(): Int {
|
|
return "foo".length
|
|
} |