summaryrefslogtreecommitdiff
path: root/tests/parser/foo-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parser/foo-object.h')
-rw-r--r--tests/parser/foo-object.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/parser/foo-object.h b/tests/parser/foo-object.h
index 2ef8ce6f..cea217ae 100644
--- a/tests/parser/foo-object.h
+++ b/tests/parser/foo-object.h
@@ -129,5 +129,15 @@ struct _FooStruct
FooStructPrivate *priv;
int member;
};
-
+
+typedef struct _FooRectangle FooRectangle;
+
+struct _FooRectangle
+{
+ gint x;
+ gint y;
+ gint width;
+ gint height;
+};
+
#endif /* __FOO_OBJECT_H__ */