| internal fun publicToInternalTopLevelFunction() = "publicToInternalTopLevelFunction.v2" |
| private fun publicToPrivateTopLevelFunction() = "publicToPrivateTopLevelFunction.v2" |
| |
| open class Container { |
| protected fun publicToProtectedFunction() = "Container.publicToProtectedFunction.v2" |
| internal fun publicToInternalFunction() = "Container.publicToInternalFunction.v2" |
| private fun publicToPrivateFunction() = "Container.publicToPrivateFunction.v2" |
| |
| public fun protectedToPublicFunction() = "Container.protectedToPublicFunction.v2" |
| internal fun protectedToInternalFunction() = "Container.protectedToInternalFunction.v2" |
| private fun protectedToPrivateFunction() = "Container.protectedToPrivateFunction.v2" |
| |
| protected open fun publicToProtectedOverriddenFunction() = "Container.publicToProtectedOverriddenFunction.v2" |
| internal open fun publicToInternalOverriddenFunction() = "Container.publicToInternalOverriddenFunction.v2" |
| private /*open*/ fun publicToPrivateOverriddenFunction() = "Container.publicToPrivateOverriddenFunction.v2" |
| |
| public open fun protectedToPublicOverriddenFunction() = "Container.protectedToPublicOverriddenFunction.v2" |
| internal open fun protectedToInternalOverriddenFunction() = "Container.protectedToInternalOverriddenFunction.v2" |
| private /*open*/ fun protectedToPrivateOverriddenFunction() = "Container.protectedToPrivateOverriddenFunction.v2" |
| |
| public fun newPublicFunction() = "Container.newPublicFunction.v2" |
| public open fun newOpenPublicFunction() = "Container.newOpenPublicFunction.v2" |
| protected fun newProtectedFunction() = "Container.newProtectedFunction.v2" |
| protected open fun newOpenProtectedFunction() = "Container.newOpenProtectedFunction.v2" |
| internal fun newInternalFunction() = "Container.newInternalFunction.v2" |
| internal open fun newOpenInternalFunction() = "Container.newOpenInternalFunction.v2" |
| private fun newPrivateFunction() = "Container.newPrivateFunction.v2" |
| } |