E2348 Storage specifier not allowed for array properties (C++)
Go Up to Compiler Errors And Warnings (C++) Index
Array properties cannot have a storage specification.
Example:
struct pbase
{
int __property ap[char *] =
{ stored = false }; // Error
};