Raw File
cxx_enum_forward_declarations.cpp

enum SomeEnum : short;

void someFunc()
{
  SomeEnum value;
  int i = value;
}
back to top