~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/tests/webtbf/tw9306c.pp

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{ %fail }
 
2
 
 
3
type
 
4
  tobj = object
 
5
    function f: integer; virtual;
 
6
  end;
 
7
 
 
8
  tobj2 = object(tobj)
 
9
    function f: string; virtual;
 
10
  end;
 
11
 
 
12
  function tobj.f: integer;
 
13
    begin
 
14
    end;
 
15
 
 
16
  function tobj2.f:string;
 
17
    begin
 
18
    end;
 
19
 
 
20
begin
 
21
end.