Created
December 9, 2018 16:46
-
-
Save alz-ahm/877f7741e81996eb4e56f87a71743718 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ClassA { | |
var classB: ClassB | |
fun someMethodOrConstructor() { | |
classB = ClassB() | |
classB.doSomthing() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment