We have a PrivateTaskClass with the private modifier in the File1.kt file.
// File1.kt
private class PrivateTaskClass
In the File2.kt file, we create the main function and an instance of the PrivateTaskClass class.
// File2.kt
fun main() {
val privateTaskObject = PrivateTaskClass()
}
What is the output of the program as a result of execution?