~ubuntu-branches/debian/sid/adabrowse/sid

« back to all changes in this revision

Viewing changes to simple_test/test-use_signature.ads

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Brenta
  • Date: 2004-02-14 13:22:40 UTC
  • Revision ID: james.westby@ubuntu.com-20040214132240-cqumhiq1677pkvzo
Tags: upstream-4.0.2
ImportĀ upstreamĀ versionĀ 4.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
with Test.Signature;
 
2
generic
 
3
   with package X_Formal is new Test.Signature (<>);
 
4
package Test.Use_Signature is
 
5
 
 
6
   procedure Y_Proc (A, B : in X_Formal.X);
 
7
   -- The cross-reference on <CODE>X</CODE> in this procedure
 
8
   -- declaration should go to <CODE>
 
9
   -- <A HREF="test-signature.html#2">test-signature.html#2</A></CODE>.
 
10
   -- If it doesn't, check procedure <CODE>Write_Reference</CODE> in
 
11
   -- file <CODE>ad-writers.adb</CODE> in the AdaBrowse sources.
 
12
   
 
13
end Test.Use_Signature;