mirror of
https://github.com/reactos/CMake.git
synced 2025-01-23 12:15:20 +00:00
dd043c3f21
Record the features implemented by GNU 4.9 and Clang 3.4.
10 lines
181 B
C++
10 lines
181 B
C++
|
|
struct X { int i, j, k = 42; };
|
|
|
|
int someFunc()
|
|
{
|
|
X a[] = { 1, 2, 3, 4, 5, 6 };
|
|
X b[2] = { { 1, 2, 3 }, { 4, 5, 6 } };
|
|
return a[0].k == b[0].k && a[1].k == b[1].k ? 0 : 1;
|
|
}
|