diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/bind_c_usage_23.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/bind_c_usage_23.f90 | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/bind_c_usage_23.f90 b/gcc/testsuite/gfortran.dg/bind_c_usage_23.f90 new file mode 100644 index 00000000000..374f8129136 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/bind_c_usage_23.f90 @@ -0,0 +1,64 @@ +! { dg-do compile } +! { dg-options "-std=f2008" } +! +! PR fortran/48858 +! PR fortran/48820 +! +! OPTIONAL + BIND(C) is allowed since TR 29113 +! + +! VALID +subroutine sub(z) bind(C) + use iso_c_binding + integer(c_int), value :: z +end subroutine sub + +! VALID since TR29113 +subroutine sub2(z) bind(C) ! { dg-error "with OPTIONAL attribute in procedure" } + use iso_c_binding + integer(c_int), optional :: z +end subroutine sub2 + +! VALID since TR29113 +subroutine sub2a(z) bind(C) ! { dg-error "with OPTIONAL attribute in procedure" } + use iso_c_binding + integer(c_int) :: z + optional :: z +end subroutine sub2a + +! VALID since TR29113 +subroutine sub2b(z) bind(C) ! { dg-error "with OPTIONAL attribute in procedure" } + use iso_c_binding + optional :: z + integer(c_int) :: z +end subroutine sub2b + +! Invalid +subroutine sub3(z) bind(C) ! { dg-error "cannot have both the OPTIONAL and the VALUE attribute" } + use iso_c_binding + integer(c_int), value, optional :: z +end subroutine sub3 + +! Invalid +subroutine sub3a(z) bind(C) ! { dg-error "cannot have both the OPTIONAL and the VALUE attribute" } + use iso_c_binding + integer(c_int) :: z + optional :: z + value :: z +end subroutine sub3a + +! Invalid +subroutine sub3b(z) bind(C) ! { dg-error "cannot have both the OPTIONAL and the VALUE attribute" } + use iso_c_binding + optional :: z + value :: z + integer(c_int) :: z +end subroutine sub3b + +! Invalid +subroutine sub3c(z) bind(C) ! { dg-error "cannot have both the OPTIONAL and the VALUE attribute" } + use iso_c_binding + value :: z + integer(c_int) :: z + optional :: z +end subroutine sub3c |