2 ! { dg-options "-std=f2003" }
4 ! Public procedures with private types for the dummies
5 ! is valid F2003, but invalid per Fortran 95, Sect. 5.2.3
6 ! See interface_15.f90 for the F95 test case.
8 module mytype_application
16 subroutine mytype_test( mytype
)
17 type(mytype_type
), intent(in out
) :: mytype
18 end subroutine mytype_test
19 end module mytype_application
21 ! { dg-final { cleanup-modules "mytype_application" } }