From f75e6d8a4899ab053ffb33a727e54d0d0de04ed7 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Wed, 11 Nov 2020 08:28:37 +0000 Subject: [PATCH] * fix copy-paste mistake from Mantis (due to replacement of '#' with links...) git-svn-id: trunk@47387 - --- tests/webtbs/tw38051.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/webtbs/tw38051.pp b/tests/webtbs/tw38051.pp index 5d54bcb0dc..4c740b5e8d 100644 --- a/tests/webtbs/tw38051.pp +++ b/tests/webtbs/tw38051.pp @@ -5,13 +5,13 @@ program tw38051; const cChr = chr(12); { Ok } type Tcha = ord(3)..ord(12); { Ok } -type Tchz = 0000003..0000012; { Ok } +type Tchz = #3..#12; { Ok } type Tcho = char(3)..char(12);{ Ok } type Tchr = chr(3)..chr(12); { Error: Identifier not found "chr" } type TArrChr = array [chr(3)..chr(12)] of char; { Ok } -var cz : 0000003..0000012; { Ok } +var cz : #3..#12; { Ok } var ch : chr(3)..chr(12); { Error: Identifier not found "chr" }