33e6a85a2d
We exclude testData pattern from copyright scope
13 lines
181 B
Kotlin
Vendored
13 lines
181 B
Kotlin
Vendored
import kotlin.contracts.contract
|
|
|
|
class A {
|
|
fun x() {
|
|
contract {
|
|
req
|
|
}
|
|
|
|
val a = <expr>doSmth("str")</expr>
|
|
}
|
|
}
|
|
|
|
fun doSmth(i: String) = 4 |