nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / size_dim.f90
blob79e9b369d0d009b7208704384787038d43f22b68
1 ! { dg-do run }
2 ! Check size with initialization expression value for dim=
3 ! PR fortran/30882
5 ! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
7 program main
8 integer :: a(10)
9 call S1(a)
10 contains
11 subroutine S1(a)
12 integer :: a(*)
13 if(size(a(1:10),1) /= 10) STOP 1
14 end subroutine S1
15 end program main