Files
codeql/cpp/ql/test/library-tests/attributes/field_attributes/field_attributes.cpp
2020-05-04 15:12:49 +01:00

10 lines
110 B
C++

struct S1 {
[[deprecated]] int a;
int b;
};
struct S2 {
int x;
[[deprecated, gnu::unused]] int b;
};