Browse Source

#1850 bug report test

carl 23 years ago
parent
commit
de0d0678f5
1 changed files with 12 additions and 0 deletions
  1. 12 0
      tests/webtbs/tw1850.pp

+ 12 - 0
tests/webtbs/tw1850.pp

@@ -0,0 +1,12 @@
+{ Source provided for Free Pascal Bug Report 1850 }
+{ Submitted by "Sebastian Günther" on  2002-03-06 }
+{ e-mail: [email protected] }
+type                                                                                                                  
+  TMyRecord = record                                                                                                  
+    a, b: Integer;                                                                                                    
+  end;                                                                                                                
+var                                                                                                                   
+  r: TMyRecord;                                                                                                       
+begin                                                                                                                 
+  with r do;                                                                                                          
+end.