mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
8 lines
144 B
C
8 lines
144 B
C
#include "third_party/chibicc/test/test.h"
|
|
|
|
_Static_assert(1);
|
|
_Static_assert(1, "hey");
|
|
|
|
main() {
|
|
_Static_assert(sizeof(int) == 4, "wut");
|
|
}
|