fork(1) download
  1. program ideone;
  2. type X = integer;
  3. type Y = type integer;
  4. var a: array[1..10] of integer;
  5. var b: array[1..10] of integer;
  6. begin
  7. a := b; { не скомпилируется }
  8. end.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.pas:3: error: syntax error before `integer'
prog.pas: In main program:
prog.pas:7: error: type mismatch in array assignment
stdout
Standard output is empty