* added missing unit

This commit is contained in:
peter 2004-02-20 16:15:21 +00:00
parent fad88e2c7c
commit 7b3a982819
2 changed files with 13 additions and 1 deletions

View File

@ -4,7 +4,7 @@
program something;
{$mode Delphi}
Uses altunit;
Uses uw2956;
type
localclassfields = class(aclasswithfields)

12
tests/webtbs/uw2956.pp Normal file
View File

@ -0,0 +1,12 @@
unit uw2956;
{$mode Delphi}
interface
type
aclasswithfields = class
protected
field1:integer;
end;
implementation
end.