Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
exitProcess.kt
blob: e103caf148dd8c8e94f2db02facfce71755c2933 [
file
]
// FIR_IDENTICAL
import
java
.
io
.
File
import
kotlin
.
system
.
exitProcess
object
Main
{
private
val KOTLIN_HOME
:
File
init
{
val home
=
System
.
getProperty
(
"kotlin.home"
)
if
(
home
==
null
)
{
exitProcess
(
1
)
}
KOTLIN_HOME
=
File
(
home
)
}
}