Fix: Null pointer dereference in ldlex.l
[binutils-gdb.git] / gdb / testsuite / gdb.pascal / hello.pas
blobe43a1a408cc7196b10d35f28c149215f057ea9e9
1 program hello;
3 var
4 st : string;
6 procedure print_hello;
7 begin
8 Writeln('Before assignment'); { set breakpoint 1 here }
9 st:='Hello, world!';
10 writeln(st); {set breakpoint 2 here }
11 end;
13 begin
14 print_hello;
15 end.