mirror of
https://github.com/github/codeql.git
synced 2026-01-01 00:27:24 +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;
|
|
|