blob: aa51ccf4bae33ffa43fabde4281317109963bd9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
! PR14081 character variables in common blocks.
subroutine test1
implicit none
common /block/ c
character(len=12) :: c
if (c .ne. "Hello World") call abort
end subroutine
subroutine test2
implicit none
common /block/ a
character(len=6), dimension(2) :: a
if ((a(1) .ne. "Hello") .or. (a(2) .ne. "World")) call abort
end subroutine
program strcommon_1
implicit none
common /block/ s, t
character(len=6) :: s, t
s = "Hello "
t = "World "
call test1
call test2
end program
|