mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-26 19:09:06 +00:00
9 lines
80 B
C++
9 lines
80 B
C++
|
|
enum SomeEnum : short;
|
|
|
|
void someFunc()
|
|
{
|
|
SomeEnum value;
|
|
int i = value;
|
|
}
|