E2348 Storage specifier not allowed for array properties (C++)

From RAD Studio
Jump to: navigation, search

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
};