```
pp = typedVar("MY_STRUCT*", offset)
print pp[0], pp[1]
```
Expected:
1) printing two array elements
or
2) raise exception : pointer cannot be indexed
In fact:
pp[0] print the first struct field, pp[1] - second
pp = typedVar("MY_STRUCT*", offset)
print pp[0], pp[1]
```
Expected:
1) printing two array elements
or
2) raise exception : pointer cannot be indexed
In fact:
pp[0] print the first struct field, pp[1] - second