Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/everything/everything.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/everything/everything.h b/tests/everything/everything.h
index 448c74d..dbb7995 100644
--- a/tests/everything/everything.h
+++ b/tests/everything/everything.h
@@ -107,7 +107,6 @@ struct _TestStructA
gint8 some_int8;
gdouble some_double;
TestEnum some_enum;
- GObject *some_obj;
};
void test_struct_a_clone (TestStructA *a,
@@ -122,6 +121,13 @@ struct _TestStructB
void test_struct_b_clone (TestStructB *b,
TestStructB *b_out);
+/* This one has a non-basic member */
+struct _TestStructC
+{
+ gint another_int;
+ GObject *obj;
+};
+
/* plain-old-data boxed types */
typedef struct _TestSimpleBoxedA TestSimpleBoxedA;
typedef struct _TestSimpleBoxedB TestSimpleBoxedB;