fpc/tests/webtbf/tw1858.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

23 lines
394 B
ObjectPascal

{ %FAIL }
{ Source provided for Free Pascal Bug Report 1858 }
{ Submitted by "Mattias Gaertner" on 2002-03-07 }
{ e-mail: nc-gaertnma@netcologne.de }
{ expanded for more testing... }
{ Should be tested on systems which detect reads of nil pointers }
unit tw1858;
interface
const
a : char = '#';
b = a + 'panic';
c : set of byte = [0,1,2,3];
d = c + [4,5,6];
implementation
end.