pascalabcnet/TestSuite/intellisense_tests/protected1.pas

12 lines
261 B
ObjectPascal
Raw Permalink Normal View History

2021-08-13 17:58:06 +03:00
{$reference System.Windows.Forms.dll}
type MyButton = class(System.Windows.Forms.Button)
constructor;
begin
self.WndProc{@procedure Button.WndProc(var m: Message); virtual;@}();
end;
end;
begin
var b: System.Windows.Forms.Button;
b.WndProc{@@}();
end.