URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [iso_c_binding_class.f03] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }
!
! PR 47023: C_Sizeof: Rejects valid code
!
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
use iso_c_binding
type t
integer(c_int) :: i
end type t
contains
subroutine test(a) bind(c) ! { dg-error "is not C interoperable" }
class(t) :: a
end subroutine
end