From 0d09b1d0a8c02885442a53c013e804e37391f77d Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Sun, 10 Mar 2019 18:14:09 +0100 Subject: tests: Add "method ccode return-type" test to increase coverage https://bugzilla.gnome.org/show_bug.cgi?id=699956 --- tests/Makefile.am | 1 + tests/methods/bug699956.vala | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 tests/methods/bug699956.vala diff --git a/tests/Makefile.am b/tests/Makefile.am index 77f4da866..c48c1a15b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -121,6 +121,7 @@ TESTS = \ methods/bug653391.vala \ methods/bug653908.vala \ methods/bug663210.vala \ + methods/bug699956.vala \ methods/bug710862.vala \ methods/bug723009.vala \ methods/bug723195.vala \ diff --git a/tests/methods/bug699956.vala b/tests/methods/bug699956.vala new file mode 100644 index 000000000..c96b5032b --- /dev/null +++ b/tests/methods/bug699956.vala @@ -0,0 +1,14 @@ +class Foo { +} + +class Bar : Foo { +} + +[CCode (type = "Foo*")] +Bar? foo () { + return null; +} + +void main () { + foo (); +} -- cgit v1.2.1