PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / common_11.f90
blobec01515cbe757cd45b54e4b8eceff3d962cded93
1 ! { dg-do compile }
3 ! PR fortran/34658
5 ! Check for more COMMON constrains
7 block data
8 implicit none
9 integer :: x, a ! { dg-warning "Initialized variable 'a' at .1. is in a blank COMMON" }
10 integer :: y = 5, b = 5 ! { dg-warning "Initialized variable 'b' at .1. is in a blank COMMON" }
11 data x/5/, a/5/
12 common // a, b
13 common /a/ x, y
14 end block data
16 subroutine foo()
17 implicit none
18 type t
19 sequence
20 integer :: i = 5
21 end type t
22 type(t) x ! { dg-error "may not have default initializer" }
23 common // x
24 end subroutine foo
26 program test
27 implicit none
28 common /a/ I ! { dg-warning "in COMMON but only in BLOCK DATA initialization" }
29 integer :: I = 43
30 end program test