Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman authored Jun 12, 2024
1 parent 925bb2a commit 48c2efe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vlib/v/tests/alias_primitive_operator_overloading_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ fn test_alias_primitive_operator_overloading() {

e := a * b
f := a.mul(b)
assert typeof(c).name == 'Alias'
assert typeof(d).name == 'Alias'
assert typeof(e).name == 'Alias'
assert typeof(f).name == 'Alias'
}

type AF_ARRAY = voidptr
Expand Down

0 comments on commit 48c2efe

Please sign in to comment.