summaryrefslogtreecommitdiff
path: root/tests/use-as-subproject/trivial.c
blob: 4b364f1a0a2eef301026e985d126f4ba8b04390f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright 2022 Collabora Ltd.
 * SPDX-License-Identifier: LGPL-2.0-or-later
 */

#include <glib.h>

int
main (void)
{
  GError *error = NULL;

  g_clear_error (&error);
  return 0;
}