Skip to content

Commit

Permalink
fix more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Delta456 committed Jan 19, 2025
1 parent 7f68daf commit 5aab6ac
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions vlib/v/debug/tests/sumtype.vv
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ fn sumtype() {
b := ?MySum(Test{
a: 1
})
if b is Test {
dump(b)
$dbg;
if b != none {
if b is Test {
dump(b)
$dbg;
}
}
}

Expand Down

0 comments on commit 5aab6ac

Please sign in to comment.