summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/IDL3/Lookup/lookup_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tests/IDL3/Lookup/lookup_test.idl')
-rw-r--r--TAO/CIAO/tests/IDL3/Lookup/lookup_test.idl20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/CIAO/tests/IDL3/Lookup/lookup_test.idl b/TAO/CIAO/tests/IDL3/Lookup/lookup_test.idl
index 74d9b85de22..4850ab2e743 100644
--- a/TAO/CIAO/tests/IDL3/Lookup/lookup_test.idl
+++ b/TAO/CIAO/tests/IDL3/Lookup/lookup_test.idl
@@ -3,7 +3,7 @@
* @file lookup_test.idl
* @authors Boris Kolpackov <boris@dre.vanderbilt.edu>
* Jeff Parsons <j.parsons@vanderbilt.edu>
- *
+ *
* Tests IDL compiler lookup when local names are used
* to reference declarations in supported interfaces,
* base valuetypes, base components, and base homes.
@@ -27,46 +27,46 @@ module M
{
void f (in Foo bar) raises (Ex);
};
-
+
valuetype VB
{
typedef long Bar;
};
-
+
valuetype V : VB supports IB
{
void f (in Bar foo) raises (Ex);
};
-
+
valuetype EB
{
typedef long Bar;
};
-
+
valuetype E : EB supports IB
{
void f (in Bar foo) raises (Ex);
};
-
+
interface T
{
typedef long Bar;
};
-
+
component CB supports T
{
};
-
+
component C : CB
{
attribute Bar baz;
};
-
+
home HB supports IB manages CB
{
typedef long Bar;
};
-
+
home H : HB manages C
{
void f (in Bar b) raises (Ex);