Advertisement
Guest User

Untitled

a guest
Jun 20th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.27 KB | None | 0 0
  1. generic
  2. package Generic_Test is
  3.    procedure Foo;
  4. end Generic_Test;
  5.  
  6.  
  7. with Ada.Finalization;
  8. package body Generic_Test is
  9.  
  10.    type Extra is new Ada.Finalization.Controlled with null record;
  11.  
  12.    procedure Foo is
  13.    begin
  14.       null;
  15.    end Foo;
  16.  
  17. end Generic_Test;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement