You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
240 B

#if !defined(_MSVC_LANG) || _MSVC_LANG < 202002L
# error "This source must be compiled with MSVC as C++20 or later."
#endif
// Test a construct that is allowed by MSVC only with 'cl -permissive'.
enum class X
{
Y = 1
};
int array[X::Y];