Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c35e97a8dc1b95945d4b0bc57de45a0550682bc
/
.
/
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
)
}
}