fpc/tests/webtbs/tw19581.pp
Jonas Maebe 12553a9367 * don't give -CO warnings or hints for ordinal constants, because those
are already checked by range checking (and were checked wrongly by -CO
    checking) (mantis #19581)

git-svn-id: trunk@21504 -
2012-06-06 19:28:22 +00:00

14 lines
135 B
ObjectPascal

{ %opt=-CO -vh -Seh }
{ %norun }
program tw19581;
type
TFoo = 0..1000;
var
Foo: TFoo;
begin
Foo:=999;
writeln(Foo);
end.