summaryrefslogtreecommitdiff
path: root/tests/webtbf/tw7438.pp
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2006-09-21 20:39:36 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2006-09-21 20:39:36 +0000
commit825df56e0b3ec29136223f24239fddb15ea324c8 (patch)
treebe68a8a8c0a72498803b57738fa562d32d9a5fcd /tests/webtbf/tw7438.pp
parent568d6f37b7dea3f5505ffa50e70ac03b5ca7f725 (diff)
downloadfpc-825df56e0b3ec29136223f24239fddb15ea324c8.tar.gz
* fixed writing "packed" status of bitpacked records to ppu files.
Not sure how it ever worked, nor how exactly symtable ppu entries work -- but it's now stored with the recorddef (which also means that bitpacking is disabled currently for objects and classes, since they are based on tabstractrecorddef rather than trecorddef) git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@4679 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests/webtbf/tw7438.pp')
-rw-r--r--tests/webtbf/tw7438.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/webtbf/tw7438.pp b/tests/webtbf/tw7438.pp
new file mode 100644
index 0000000000..934ff57dce
--- /dev/null
+++ b/tests/webtbf/tw7438.pp
@@ -0,0 +1,17 @@
+{ %norun }
+
+{$mode macpas}
+unit tw7438;
+
+interface
+
+type
+ tr = bitpacked record
+ l1: longint;
+ l2: longint;
+ end;
+
+
+implementation
+
+end.