summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/graphite/pr37857.f90
blob: c2cccb775da785335d2eba67256f2abe8f60eec0 (plain)
1
2
3
4
5
6
7
8
9
! { dg-options "-O2 " }

program superficie_proteina
  integer, parameter :: LONGreal = selected_real_kind(12,90)
  integer :: number_of_polypeptides, maximum_polypeptide_length
  real (kind = LONGreal), dimension (:,:), allocatable :: individual_conformations
  allocate (individual_conformations(-number_of_bins:0,number_of_polypeptides))
  individual_conformations = 0.0_LONGreal
end program superficie_proteina