OSDN Git Service

PR c++/41920
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / use_iso_c_binding.f90
1 ! { dg-do compile }
2 ! this is to simply test that the various ways the use statement can 
3 ! appear are handled by the compiler, since i did a special treatment 
4 ! of the intrinsic iso_c_binding module.  note: if the user doesn't 
5 ! provide the 'intrinsic' keyword, the compiler will check for a user 
6 ! provided module by the name of iso_c_binding before using the 
7 ! intrinsic one.  --Rickett, 09.26.06
8 module use_stmt_0
9   ! this is an error because c_ptr_2 does not exist 
10   use, intrinsic :: iso_c_binding, only: c_ptr_2 ! { dg-error "Symbol 'c_ptr_2' referenced at \\(1\\) does not exist" }
11 end module use_stmt_0
12
13 module use_stmt_1
14   ! this is an error because c_ptr_2 does not exist 
15   use iso_c_binding, only: c_ptr_2 ! { dg-error "Symbol 'c_ptr_2' referenced at \\(1\\) does not exist" }
16 end module use_stmt_1
17
18 module use_stmt_2
19   ! works fine
20   use, intrinsic :: iso_c_binding, only: c_ptr
21 end module use_stmt_2
22
23 module use_stmt_3
24   ! works fine
25   use iso_c_binding, only: c_ptr
26 end module use_stmt_3
27
28 module use_stmt_4
29   ! works fine
30   use, intrinsic :: iso_c_binding
31 end module use_stmt_4
32
33 module use_stmt_5
34   ! works fine
35   use iso_c_binding
36 end module use_stmt_5
37
38 module use_stmt_6
39   ! hmm, is this an error?  if so, it's not being caught...
40   ! --Rickett, 09.13.06
41   use, intrinsic :: iso_c_binding, only: c_int, c_int
42 end module use_stmt_6
43
44 module use_stmt_7
45   ! hmm, is this an error?  if so, it's not being caught...
46   ! --Rickett, 09.13.06
47   use iso_c_binding, only: c_int, c_int
48 end module use_stmt_7
49
50 ! { dg-final { cleanup-modules "use_stmt_2 use_stmt_3 use_stmt_4 use_stmt_5 use_stmt_6 use_stmt_7" } }