33e6a85a2d
We exclude testData pattern from copyright scope
15 lines
187 B
Kotlin
Vendored
15 lines
187 B
Kotlin
Vendored
package <expr>test</expr>
|
|
|
|
import java.util.List
|
|
|
|
fun test() = List::class
|
|
|
|
fun other(): Int {
|
|
return "foo".length
|
|
}
|
|
|
|
class Foo {
|
|
fun foo() {
|
|
require(other() == 3)
|
|
}
|
|
} |