diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-01-29 09:54:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-01-29 09:54:38 +0100 |
commit | 2a54af218c336150c6b0b3cb259ed7dce2f4ddf3 (patch) | |
tree | 13abe99fffc608fa7740d1c5cd87ad374cd85299 /idlc | |
parent | b38cc6f5ab745373f399bfc558b4fe70c89c717c (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.tests | 10 |
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); + }; +}; |