What happens if a java method has the same name as...
# getting-started
k
What happens if a java method has the same name as a kotlin extension, for example,
apply
k
You'll probably get the extension shadowed by class member warning, and your extension will not be called
k
Hmmm
k
Start with this:
And see why this extension is not “relevant”