DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / expr_16.f90
12345678910
program parconst implicit none integer a parameter (a = 8) integer (a) b b = 10_8 print *, b if (b /= 10_8) error stop end program parconst