comparison gcc/testsuite/gfortran.dg/namelist_93.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 ! { dg-do compile }
2 ! PR78659 Spurious "requires DTIO" reported against namelist statement
3 MODULE ma
4 IMPLICIT NONE
5 TYPE :: ta
6 INTEGER, allocatable :: array(:)
7 END TYPE ta
8 END MODULE ma
9
10 PROGRAM p
11 USE ma
12 class(ta), allocatable :: x
13 NAMELIST /nml/ x
14 WRITE (*, nml)! { dg-error "is polymorphic and requires a defined input/output procedure" }
15 READ (*, nml) ! { dg-error "is polymorphic and requires a defined input/output procedure" }
16 END PROGRAM p