tw8031.pp 223 B

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