📄 littletest58.out
字号:
unit LittleTest58;
{ AFS 12 Nov 2003
This unit compiles but is not semantically meaningfull
it is test cases for the code formatting utility
Another case reported by Adem Baba
}
interface
type
TDummy = record
case integer of
0: (
ERX: longword;
word: record
Filler: word;
case integer of
0: (
RX: word;
byte: record
RH: byte;
RL: byte;
end;
);
end;
);
end;
TSomeObject = class(TObject)
private
FDummy: array[0..8] of TDummy;
public
property DRXummy: TDummy Read FDummy[0] Write FDummy[0];
property E: longword Read FDummy[0].ERX Write FDummy[0].ERX;
// "undeclared Identifier 'RL' " Property AL: Byte Read FDummy[0].RL Write FDummy[0].RL;
end;
implementation
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -