mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 22:48:57 +02:00
no message
This commit is contained in:
parent
78024ed54c
commit
51d415e253
30
tests/webtbs/tw2865.pp
Normal file
30
tests/webtbs/tw2865.pp
Normal file
@ -0,0 +1,30 @@
|
||||
{ %version=1.1 }
|
||||
{$mode objfpc}
|
||||
{ Source provided for Free Pascal Bug Report 2865 }
|
||||
{ Submitted by "Eric Grange" on 2003-12-30 }
|
||||
{ e-mail: egrange@glscene.org }
|
||||
unit tw2865;
|
||||
|
||||
interface
|
||||
|
||||
uses Classes;
|
||||
|
||||
type
|
||||
TVector = array [0..3] of Single;
|
||||
|
||||
TGLUpdateAbleObject = class (TPersistent)
|
||||
end;
|
||||
|
||||
TGLCoordinates = class (TGLUpdateAbleObject)
|
||||
private
|
||||
{ Private Declarations }
|
||||
FCoords : TVector;
|
||||
|
||||
published
|
||||
{ Published Declarations }
|
||||
property X : Single index 0 read FCoords[0];
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
Loading…
Reference in New Issue
Block a user