Skip to content

Commit

Permalink
minor: promote test (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Flash authored Dec 26, 2024
1 parent fcc35b4 commit 270d8ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/moon/tests/test_cases/avl_tree.in/lib/avl.mbt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 270d8ea

Please sign in to comment.