1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
{ %interactive } { see tw13480d.pp for test instructions } {$mode objfpc} unit tw13840b; interface uses tw13840a; type tb = class(ta) end; implementation { procedure tb.test; begin writeln('tb.test'); inherited test; end; } end.