mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-16 18:20:00 +00:00
13 lines
146 B
C
13 lines
146 B
C
/*
|
|
# Empty struct
|
|
*/
|
|
|
|
#include "common.h"
|
|
|
|
int main() {
|
|
struct s {};
|
|
struct s s0;
|
|
assert(sizeof(s0) == 0);
|
|
return EXIT_SUCCESS;
|
|
}
|