Referencing a class within its own type annotations.
class BinaryTree: value: Any | None lhs: BinaryTree | None rhs: BinaryTree | None