Provide specialized stdlib function implementations depending on current JRE version #KT-8254

This commit is contained in:
Ilya Gorbunov
2016-06-15 23:44:34 +03:00
parent b16f46d932
commit 25974be3f8
4 changed files with 73 additions and 12 deletions
@@ -0,0 +1,5 @@
package kotlin.internal
@Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER", "CANNOT_OVERRIDE_INVISIBLE_MEMBER")
internal open class JRE8PlatformImplementations : JRE7PlatformImplementations() {
}