Restore project-specific cmake/test-static-assert.c

This file was wrongly extracted to the .core/build submodule during the
build system extraction. It's a project-specific compile test used by
CMakeLists.txt:185 and must remain in the project tree.

Verified: make configure && make build && make package all pass.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude 2026-02-06 03:27:11 +00:00
parent 92e0aa779b
commit 5dae74347c
No known key found for this signature in database
GPG key ID: AF404715446AEB41

View file

@ -0,0 +1,6 @@
#include <assert.h>
static_assert(1, "FAIL");
int main(int argc, char *argv[]) {
return 0;
}