summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/exception_misuse1.idl
blob: 0c614127f203303721e0c7ccba32cf77e70242bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * @file exception_misuse1.idl
 *
 * https://github.com/DOCGroup/ACE_TAO/issues/2015
 *
 * tao_idl shall reject use of exception for argument of method
 *
 */
interface exception_misuse1 {
  exception exc_t {
    string reason;
  };
  void doit (in exc_t ex);
};