summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--idlc/test/parser/attribute.tests10
1 files changed, 10 insertions, 0 deletions
diff --git a/idlc/test/parser/attribute.tests b/idlc/test/parser/attribute.tests
index d5814acbe9b0..1e9b28d6d54a 100644
--- a/idlc/test/parser/attribute.tests
+++ b/idlc/test/parser/attribute.tests
@@ -220,3 +220,13 @@ EXPECT SUCCESS "attribute.tests 27":
interface I1 {
[attribute, bound, readonly] long a;
};
+
+
+EXPECT SUCCESS "atribute.tests 28":
+exception E1 {};
+interface I1 {
+ [attribute, bound] long a {
+ get raises (E1);
+ set raises (E1);
+ };
+};