(t *testing.T)
| 78 | } |
| 79 | |
| 80 | func TestValue_two_ptr_with_interface(t *testing.T) { |
| 81 | a := uint(42) |
| 82 | var b any = &a |
| 83 | |
| 84 | got := deref.Value(reflect.ValueOf(b)) |
| 85 | assert.Equal(t, uint(42), got.Interface()) |
| 86 | } |
| 87 | |
| 88 | func TestValue_three_ptr_with_interface(t *testing.T) { |
| 89 | a := uint(42) |