summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-01-29 09:54:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-01-29 09:54:38 +0100
commit2a54af218c336150c6b0b3cb259ed7dce2f4ddf3 (patch)
tree13abe99fffc608fa7740d1c5cd87ad374cd85299 /idlc
parentb38cc6f5ab745373f399bfc558b4fe70c89c717c (diff)
Clarify that bound attribute can specify getter/setter raises lists
Change-Id: I49ffee7c1e65d8e79865e5b596d18111e0c64279
Diffstat (limited to 'idlc')
-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);
+ };
+};