summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-11-04 09:25:28 +0000
committerpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-11-04 09:25:28 +0000
commit199b40f32b9e96c5f0c7dbf84712486817cc60f9 (patch)
treeac112f1cb15363f557b3de144ba9890855cb5d8d
parentcd00894348d3d784446c740201250a2273410d0c (diff)
downloadfpc-199b40f32b9e96c5f0c7dbf84712486817cc60f9.tar.gz
* fix compilation failure of test.pas
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@14037 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--ide/test.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/ide/test.pas b/ide/test.pas
index 9ee3ddfa11..309fc3cc9f 100644
--- a/ide/test.pas
+++ b/ide/test.pas
@@ -45,13 +45,13 @@ type
end;
TClass = class
- constructor Create;
name : string;
+ constructor Create;
end;
TClass2 = class(TClass)
- constructor Create;
X : longint;
+ constructor Create;
end;
EnumTyp = (enum1,enum2,enum3);