summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/interface.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/interface.idl')
-rw-r--r--TAO/tests/IDL_Test/interface.idl24
1 files changed, 0 insertions, 24 deletions
diff --git a/TAO/tests/IDL_Test/interface.idl b/TAO/tests/IDL_Test/interface.idl
index a44dce519fb..3c8e64bbf8a 100644
--- a/TAO/tests/IDL_Test/interface.idl
+++ b/TAO/tests/IDL_Test/interface.idl
@@ -106,27 +106,3 @@ struct later_holder
interface later {};
-// Previously, we could have found v if it
-// was inherited into Client, but not in
-// the case below, where it is inherited into
-// somewhere other than the scope where the
-// lookup starts.
-
-interface Begin
-{
- typedef long Value;
-};
-
-interface Middle : Begin
-{
-};
-
-interface End : Middle
-{
-};
-
-interface Client
-{
- attribute End::Value v;
-};
-