bug0028.pp 79 B

12345678910
  1. type
  2. enumtype = (a);
  3. var
  4. e : enumtype;
  5. begin
  6. writeln(ord(e));
  7. end.