mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
7 lines
136 B
C++
7 lines
136 B
C++
|
|
constexpr int var_constexpr = 5;
|
|
int var_not_constexpr_initialised = 6;
|
|
const int var_not_constexpr_const = 7;
|
|
int var_not_constexpr;
|
|
|