Features: Add cxx_enum_forward_declarations.

This commit is contained in:
Stephen Kelly
2014-04-06 10:37:08 +02:00
parent adf22f611e
commit 16603f7cdb
4 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
enum SomeEnum : short;
void someFunc()
{
SomeEnum value;
int i = value;
}