(root)/
glib-2.79.0/
gio/
tests/
static-link/
app.c
       1  #include <gio/gio.h>
       2  
       3  int main(int argc, char *argv[])
       4  {
       5    GApplication *app = g_application_new (NULL, 0);
       6    g_object_unref (app);
       7    return 0;
       8  }