(t *testing.T)
| 86 | } |
| 87 | |
| 88 | func TestValue_three_ptr_with_interface(t *testing.T) { |
| 89 | a := uint(42) |
| 90 | var b any = &a |
| 91 | c := &b |
| 92 | |
| 93 | got := deref.Value(reflect.ValueOf(c)) |
| 94 | assert.Equal(t, uint(42), got.Interface()) |
| 95 | } |
| 96 | |
| 97 | func TestValue_nil(t *testing.T) { |
| 98 | got := deref.Value(reflect.ValueOf(nil)) |