소스 검색

no message

florian 22 년 전
부모
커밋
f32f95a58c
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      tests/webtbf/tw2670.pp

+ 16 - 0
tests/webtbf/tw2670.pp

@@ -0,0 +1,16 @@
+{ %version=1.1}
+{ Source provided for Free Pascal Bug Report 2670 }
+{ Submitted by "marco" on  2003-09-07 }
+{ e-mail: [email protected] }
+program bugje;
+{$mode delphi}
+
+Uses Classes;
+
+type            theenum = (hello,hi, hoi);
+                testme= class(TComponent)
+                           field : theenum;
+                           end;
+
+begin
+end.