diff --git a/crates/moon/tests/test_cases/avl_tree.in/lib/avl.mbt b/crates/moon/tests/test_cases/avl_tree.in/lib/avl.mbt index caf29310..38a6e1ec 100644 --- a/crates/moon/tests/test_cases/avl_tree.in/lib/avl.mbt +++ b/crates/moon/tests/test_cases/avl_tree.in/lib/avl.mbt @@ -3,7 +3,7 @@ // Empty represents an empty node in the AVL tree // Node represents a node in the AVL tree with left child, value, right child, and height -pub enum T[U] { +pub(all) enum T[U] { Empty Node(T[U], U, T[U], Int) }