Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiHartmann committed May 16, 2024
1 parent 504a853 commit 6bd1109
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ public void test26_verifier() {
@ImplicitlyConstructible
@LooselyConsistentValue
static value class MyValue27 {
int foo = rI;
int foo = 42;
}

static class MyValue27Holder {
Expand All @@ -1057,7 +1057,7 @@ public static int test27() {

@Run(test = "test27")
public void test27_verifier() {
Asserts.assertEQ(test27(), rI);
Asserts.assertEQ(test27(), 42);
}

@ImplicitlyConstructible
Expand Down

0 comments on commit 6bd1109

Please sign in to comment.