fpc/tests/webtbf/tw8583.pp
peter fdc692a5ca * test for set=nonset operation
git-svn-id: trunk@7011 -
2007-03-27 18:38:03 +00:00

24 lines
280 B
ObjectPascal

{ %fail }
program testbug;
{$mode objfpc}{$H+}
type
TState = (a, b, c, d);
TStates = set of TState;
var
s : TStates;
begin
s := [a];
if s = a then
writeln('Should give a compile time error');
if s = b then halt(1);
if s = [a] then
writeln('OK');
end.