[vala/wip/transform: 101/102] tests: "??" evaluates both of sides of expression when right side throws error



commit 9390b840060df3df097dda5881fe48f1a1590e02
Author: Rico Tzschichholz <ricotz ubuntu com>
Date:   Tue Nov 8 15:02:24 2016 +0100

    tests: "??" evaluates both of sides of expression when right side throws error
    
    https://gitlab.gnome.org/GNOME/vala/issues/534

 tests/Makefile.am                 |  1 +
 tests/control-flow/bug764440.vala | 17 +++++++++++++++++
 2 files changed, 18 insertions(+)
---
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 112ec1b9e..c7b45f5b7 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -154,6 +154,7 @@ TESTS = \
        control-flow/bug691514.vala     \
        control-flow/bug736774-1.vala \
        control-flow/bug736774-2.vala \
+       control-flow/bug764440.vala \
        control-flow/bug790903.test \
        control-semantic/argument-extra.test \
        control-semantic/argument-incompatible-type-out.test \
diff --git a/tests/control-flow/bug764440.vala b/tests/control-flow/bug764440.vala
new file mode 100644
index 000000000..6f1caaece
--- /dev/null
+++ b/tests/control-flow/bug764440.vala
@@ -0,0 +1,17 @@
+errordomain FooError {
+       BAR;
+}
+
+unowned string get_bar () throws FooError {
+       throw new FooError.BAR ("bar");
+}
+
+void main () {
+       try {
+               unowned string? foo = "foo";
+               unowned string bar = foo ?? get_bar ();
+               print ("%s\n", bar);
+       } catch {
+               assert_not_reached ();
+       }
+}


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]