14 Jun 2017 12:36
#19751
The following program (about allocatable character strings) works fine under Gfortran, but in Silverfrost it complains about ' Colon found where not expected'.
PROGRAM test
IMPLICIT NONE
CHARACTER(len=:), allocatable :: CH
ALLOCATE(character(len=32) :: CH)
CH='HELLO'
print*,'ch=',CH
END PROGRAM test
[/quote]