mirror of
https://github.com/FriendsOfPHP/phpnextctest.git
synced 2026-03-23 22:32:10 +01:00
14 lines
159 B
C
14 lines
159 B
C
struct Point {
|
|
int x;
|
|
int y;
|
|
};
|
|
|
|
int main(void) {
|
|
struct Point p = {
|
|
.y = 2,
|
|
.x = 1,
|
|
};
|
|
return !(p.x == 1 && p.y == 2);
|
|
}
|
|
|