This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
pascal
/
freepascal.compiler
espejo de
https://gitlab.com/freepascal.org/fpc/source.git
Seguir
2
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
* test only with longint to byte typecast
pierre
hace 23 años
padre
03f1fef7aa
commit
dbb291bc0b
Se han
modificado 1 ficheros
con
10 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
10
0
tests/tbf/tb0107a.pp
+ 10
- 0
tests/tbf/tb0107a.pp
Ver fichero
@@ -0,0 +1,10 @@
+{ %FAIL }
+
+var
+ i : longint;
+ j : word;
+
+begin
+ j:=5;
+ byte(i):=j;
+end.