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.
|
// Test for C++20 [[likely]] and [[unlikely]] attributes. |
|
|
|
int main(int argc, char **) |
|
{ |
|
#if __cplusplus < 202002L |
|
deliberately_fail(because, older, C++, standard); |
|
#endif |
|
|
|
int x = 0; |
|
if (argc == 1) [[likely]] |
|
x = 0; |
|
else |
|
x = 1; |
|
return x; |
|
}
|
|
|