blob: e76215e7f2b1ba70ab0096822a8275a29dc841e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
! { dg-do compile }
use, intrinsic :: iso_c_binding
type, bind(c) :: mytype
integer(c_int) :: j
end type mytype
type(mytype), bind(c) :: mytype_var ! { dg-error "cannot be BIND.C." }
integer(c_int), bind(c) :: i ! { dg-error "cannot be declared with BIND.C." }
integer(c_int), bind(c), dimension(10) :: my_array ! { dg-error "cannot be BIND.C." }
common /COM/ i
bind(c) :: /com/
end
|