summaryrefslogtreecommitdiff
path: root/tests/test/tthlp28.pp
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-05-12 18:44:05 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-05-12 18:44:05 +0000
commit08a7bf3d9cae12254ec73dcba54ce179b0e42109 (patch)
tree889e1841cf8a71aa7ec7728211a8ff2a23eb5e9e /tests/test/tthlp28.pp
parent0df7d1db05537a3bf08a08036d5de2733335e902 (diff)
parente69ad5832da5c1af0a84c3029e1befafa52aa695 (diff)
downloadfpc-08a7bf3d9cae12254ec73dcba54ce179b0e42109.tar.gz
* synchronised with trunk till r42049
git-svn-id: https://svn.freepascal.org/svn/fpc/branches/debug_eh@42050 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests/test/tthlp28.pp')
-rw-r--r--tests/test/tthlp28.pp21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test/tthlp28.pp b/tests/test/tthlp28.pp
new file mode 100644
index 0000000000..4882904e84
--- /dev/null
+++ b/tests/test/tthlp28.pp
@@ -0,0 +1,21 @@
+{ %NORUN }
+
+program tthlp28;
+
+{$mode delphi}
+
+type
+ TPLongIntHelper = record helper for PLongInt
+ procedure Test;
+ end;
+
+procedure TPLongIntHelper.Test;
+begin
+
+end;
+
+var
+ p: PLongInt;
+begin
+ p.Test;
+end.