Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlinWithStdlib
/
contracts
/
withReceiver.kt
blob: 16915e146c8ef12e6e274c8da91621657b567d75 [
file
] [
log
] [
blame
]
// LANGUAGE_VERSION: 1.3
@file
:
Suppress
(
"INVISIBLE_MEMBER"
,
"INVISIBLE_REFERENCE"
)
package
test
import
kotlin
.
internal
.
contracts
.*
fun
Any
?.
isNotNull
():
Boolean
{
contract
{
returns
(
true
)
implies
(
this
@isNotNull
!=
null
)
}
return
this
!=
null
}