mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
26 lines
212 B
ObjectPascal
26 lines
212 B
ObjectPascal
{ %FAIL }
|
|
|
|
{$mode objfpc}
|
|
uses
|
|
SysUtils, Classes;
|
|
type
|
|
|
|
{ TFoo }
|
|
|
|
TFoo = class
|
|
procedure Bar;
|
|
end;
|
|
|
|
var
|
|
AByte: Byte;
|
|
|
|
{ TFoo }
|
|
|
|
procedure TFoo.Bar;
|
|
begin
|
|
AByte := Byte.SetBit(1);
|
|
end;
|
|
|
|
begin
|
|
end.
|