In my project Pinpoi (GitHub - fvasco/pinpoi: Import and manage point of interest) switch Kotlin version from 1.0.1-2 (e8142d7) to 1.0.2 (0d7e676) causes a compilation error.
Kotlin 1.0.2 raises visibility error on protected method.
e: .../pinpoi/importer/KmlImporter.kt: (40, 42): Cannot access 'configureFrom': it is 'protected' in 'AbstractImporter'
e: .../pinpoi/importer/ZipImporter.kt: (27, 30): Cannot access 'configureFrom': it is 'protected' in 'AbstractImporter'
e: .../pinpoi/importer/ZipImporter.kt: (28, 30): Cannot access 'importImpl': it is 'protected' in 'AbstractImporter'
What is the error?
No visibility for protected methods in same package?
Thanks,
Vasco