summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3155_Regression/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3155_Regression/test.idl')
-rw-r--r--TAO/tests/Bug_3155_Regression/test.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/TAO/tests/Bug_3155_Regression/test.idl b/TAO/tests/Bug_3155_Regression/test.idl
new file mode 100644
index 00000000000..ebbd7013179
--- /dev/null
+++ b/TAO/tests/Bug_3155_Regression/test.idl
@@ -0,0 +1,20 @@
+module C1
+{
+ valuetype EB // NOT abstract
+ {
+ };
+};
+
+module M1
+{
+ valuetype VT; // Forward declare
+};
+
+module M1
+{
+ valuetype VT : // Full definition
+ ::C1::EB
+ {
+ public long id;
+ };
+};