arm: Add .type and .size to __gnu_cmse_nonsecure_call [PR115360]
[official-gcc.git] / gcc / testsuite / gfortran.dg / select_type_38.f03
bloba643e99f01f5f32f95d0faef209f72b5d1d63b72
1   type :: t1
2   end type
3   type, extends(t1) :: t2
4   end type
5   class(t1), pointer :: a
6 lab1: select type (a)
7   end select lab1
8 lab1: select type (a)           ! { dg-error "Duplicate construct label" }
9   end select lab1               ! { dg-error "Expecting END PROGRAM statement" }
10 end