Plain field is an ordinary field of a given type.
Syntax:
type-id var-id;
Example of plain fields:
struct B
{
// …
};
struct A
{
int a;
B b;
};
Both a and b fields of structure A are plain fields.