July 23, 2005
Is the only difference between

enum E{ A}

and

struct E{
  enum { A}
}

that in the latter case variables of type E are pseudo variables, i.e. they cannot be assigned to?

-manfred