summaryrefslogtreecommitdiff
path: root/TAO/tests/Any/Recursive/NonRecursive.idl
blob: 9ecf951bac7f97f30a2c846f1580cd73f9c3a963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Non-recursive types for compile-time testing.

module Foo
{
  struct Nested
  {
    boolean z;
  };
};

module Bar
{
  typedef Foo::Nested Nested;

  struct Baz
  {
    Nested one;
    Nested two;
  };
};