Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
kt42271.kt
blob: 0487becbb319ffb834c501d688ccd49e68e3baf9 [
file
]
// RUN_PIPELINE_TILL: FRONTEND
import
kotlin
.
properties
.
Delegates
private
var
value
by
Delegates
.
notNull
<
Int
>()
fun main
()
{
println
(::
value
.<!
LATEINIT_INTRINSIC_CALL_ON_NON_LATEINIT
!>
isInitialized
<!>)
}