Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / der_init_2.f90
blobcd6fc505bc1963c382674ec602e7e170fdf7144c
1 ! PR 15314
2 ! We were looking at the type of the initialization expression, not the type
3 ! of the field.
4 program der_init_2
5 implicit none
6 type foo
7 integer :: a(3) = 42
8 integer :: b = 123
9 end type
11 type (foo) :: v
13 if ((v%b .ne. 123) .or. any (v%a .ne. 42)) STOP 1;
14 end program