If class A contains an private extension function ...
# getting-started
j
If class A contains an private extension function for class B (
private fun B.blah()
), is it hoisted to the package level, or is something else happening with it to make it not local to the class that it is defined in? I have started getting `NoSuchMethodError`s after copying the extension method to another class in the same package.