Strongly typed `enum`s in VS10?
- by Motti
This question pointed to a wiki page for C++0x support which lists Strongly typed enums as Partially supported in VS10.
However this creates a compilation error:
enum class boolean { no, yes, maybe };
Any idea what constitutes partial support when the basic syntax isn't accepted?