repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git]
/
TAO
/
tests
/
IDL_Test
/
exception_misuse2.idl
blob
d5deeeebd22bc0609eb809c485bdbcbd098c5ba4
1
/**
2
* @file exception_misuse2.idl
3
*
4
* https://github.com/DOCGroup/ACE_TAO/issues/2015
5
*
6
* tao_idl shall reject use of exception for struct member
7
*
8
*/
9
module
exception_misuse2
{
10
exception exc_t
{
11
string
reason
;
12
};
13
struct
mystruct
{
14
exc_t ex
;
15
};
16
};
17