()
| 6 | ) |
| 7 | |
| 8 | func Run() { |
| 9 | thing := test.MakeThing(42) |
| 10 | defer thing.Drop() |
| 11 | |
| 12 | result := test.Foo(thing) |
| 13 | assertEqual(result, uint32(42+1+2)) |
| 14 | } |
| 15 | |
| 16 | func assertEqual[T comparable](a T, b T) { |
| 17 | if a != b { |
nothing calls this directly
no test coverage detected