summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/Bug_2619_Regression.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/Bug_2619_Regression.idl')
-rw-r--r--TAO/tests/IDL_Test/Bug_2619_Regression.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/Bug_2619_Regression.idl b/TAO/tests/IDL_Test/Bug_2619_Regression.idl
new file mode 100644
index 00000000000..aefa06901c0
--- /dev/null
+++ b/TAO/tests/IDL_Test/Bug_2619_Regression.idl
@@ -0,0 +1,19 @@
+// $Id$
+
+// Test Bug 2619
+
+struct Type_T
+{
+ string id;
+};
+
+valuetype Data_T
+{
+ public Type_T type;
+};
+
+interface Test
+{
+ typedef Type_T Group;
+ Group getGroup();
+};