summaryrefslogtreecommitdiff
path: root/tests/tbf
diff options
context:
space:
mode:
authorpaul <paul@3ad0048d-3df7-0310-abae-a5850022a9f2>2010-12-27 05:51:59 +0000
committerpaul <paul@3ad0048d-3df7-0310-abae-a5850022a9f2>2010-12-27 05:51:59 +0000
commitb6f90498d64556e5953fe4f8a6103aaa778aa23a (patch)
treed2cece7a66b6dac202c8358c48ef642b8af912a4 /tests/tbf
parentdd6aff986ee1794b230e9d96e6c66384b43bbfe4 (diff)
downloadfpc-b6f90498d64556e5953fe4f8a6103aaa778aa23a.tar.gz
tests: move tb0070.pp to tbs and change expected behavior to success because delphi and fpc both allows this constructions now
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@16647 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests/tbf')
-rw-r--r--tests/tbf/tb0070.pp13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/tbf/tb0070.pp b/tests/tbf/tb0070.pp
deleted file mode 100644
index 9cee7f4d4b..0000000000
--- a/tests/tbf/tb0070.pp
+++ /dev/null
@@ -1,13 +0,0 @@
-{ %FAIL }
-{ Old file: tbf0343.pp }
-{ }
-
-{$mode delphi}
-type
- TListEntry = record
- Next: ^TListEntry; (*<-- Error message here*)
- Data: Integer;
- end;
-
-begin
-end.