1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-17 21:25:13 +01:00
glib/tests/assert-msg-test.c
Colin Walters 8e59d8602c Use (void) for no parameters, not ()
This ensures we build with -Werror=missing-parameter-type.

https://bugzilla.gnome.org/show_bug.cgi?id=687385
2012-11-01 20:12:02 -04:00

9 lines
92 B
C

#include <glib.h>
int main(int argc, char **argv)
{
g_assert(42 < 0);
return 0;
}