```sourcepawn
struct ExampleStruct {
public char[] ExampleValue;
}
public void ExampleReproductionFunction(ExampleStruct obj) {
PrintToChatAll(obj.ExampleValue); // Problematic Line
}
```
I'm running into an error stating on the PrintToChatAll line that there is no symbol called "obj".
Am I doing something wrong, or is this just a bug. This doesn't happen if the function argument isn't a struct, does Pawn not support structs as function arguments?