Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
e107fd0713c93f8b7d5be54552b51b1632b34f8c
/
.
/
Tests
/
CompileFeatures
/
msvc_permissive.cxx
blob: a8f2ff3fd53fb0c7f113c1dbb0438ee787f715bc [
file
] [
log
] [
blame
]
#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
];