fpc/tests/webtbf/tw8031.pp
Jonas Maebe b86e2aa33a * fixed crash when compiling certain invalid "in" constructions
(mantis 8031)

git-svn-id: trunk@5748 -
2006-12-29 23:13:02 +00:00

11 lines
223 B
ObjectPascal

{ %fail }
program text;
type TSQLDBTypes = (mysql40,mysql41,mysql50,postgresql,interbase,odbc,oracle);
const MySQLdbTypes = [mysql40,mysql41,mysql50];
begin
if (SQLDbType in TSQLDBTypes) then writeln('strange');
end.