diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-01-29 09:53:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-01-29 09:53:29 +0100 |
commit | b38cc6f5ab745373f399bfc558b4fe70c89c717c (patch) | |
tree | d346c12a3d55617c9874d79ce4591e3f799fd5b5 /idlc | |
parent | ebb1bb16d1822b938d482276e0882980f502eda9 (diff) |
Clarify that attribute setter raises list must not be empty
Change-Id: Ic2d8b1e6f9dbaeee3e3ad9280236abd503de3ffd
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/test/parser/attribute.tests | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/idlc/test/parser/attribute.tests b/idlc/test/parser/attribute.tests index becd688b8c79..d5814acbe9b0 100644 --- a/idlc/test/parser/attribute.tests +++ b/idlc/test/parser/attribute.tests @@ -36,6 +36,14 @@ interface I1 { }; +EXPECT FAILURE "attribute.tests 3a": +interface I1 { + [attribute] long a { + set raises (); + }; +}; + + EXPECT SUCCESS "attribute.tests 4": exception E1 {}; interface I1 { |