mirror of
https://github.com/github/codeql.git
synced 2026-02-13 05:31:22 +01:00
16 lines
186 B
C++
16 lines
186 B
C++
// semmle-extractor-options: -std=c++23
|
|
|
|
#define BAR
|
|
|
|
#ifdef FOO
|
|
#warning C++23 1
|
|
#elifdef BAR
|
|
#warning C++23 2
|
|
#endif
|
|
|
|
#ifdef FOO
|
|
#warning C++23 3
|
|
#elifndef FOO
|
|
#warning C++23 3
|
|
#endif
|