mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
236 B
C++
8 lines
236 B
C++
static const int x = 1;
|
|
|
|
int main() <% /* <% is { */
|
|
return "ab"<: /* <: is [ */
|
|
0<::x /* <: is not { here; the < is a <, and the :: is a name qualifier for x */
|
|
:>; /* :> is ] */
|
|
%> /* %> is } */
|