From d94a55604e9dfb949e73c9568bbae67a468f8e60 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Fri, 2 Dec 2011 14:11:06 +0000 Subject: [PATCH] Fix the test. It's mode Delphi, but does not compile in Delphi, because "TSomeRecord" and "TSomeRecord" are different identifiers. git-svn-id: branches/svenbarth/generics@19720 - --- tests/webtbs/tw18567.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/webtbs/tw18567.pp b/tests/webtbs/tw18567.pp index b2018a88b8..4ed4420558 100644 --- a/tests/webtbs/tw18567.pp +++ b/tests/webtbs/tw18567.pp @@ -5,13 +5,13 @@ program tw18567; type TSomeRecord = record data: TData; - class operator Explicit(a: TData) : TSomeRecord; + class operator Explicit(a: TData) : TSomeRecord ; end; - class operator TSomeRecord .Explicit (a: TData): TSomeRecord; + class operator TSomeRecord .Explicit (a: TData): TSomeRecord ; begin end; begin -end. \ No newline at end of file +end.