This website works better with JavaScript
Home
Explore
Help
Sign In
pascal
/
freepascal.compiler
mirror of
https://gitlab.com/freepascal.org/fpc/source.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
* new test
peter
24 years ago
parent
9929a33475
commit
9d1f81129f
1 changed files
with
9 additions
and
0 deletions
Split View
Show Diff Stats
9
0
tests/tbs/tb0352.pp
+ 9
- 0
tests/tbs/tb0352.pp
View File
@@ -0,0 +1,9 @@
+procedure p(var w:word);
+begin
+end;
+
+var
+ i : smallint;
+begin
+ p(word(i));
+end.