Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/c_loc_tests_15.f90 @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do compile } |
2 ! | |
3 ! PR 44925: [OOP] C_LOC with CLASS pointer | |
4 ! | |
5 ! Contributed by Barron Bichon <barron.bichon@swri.org> | |
6 | |
7 use iso_c_binding | |
8 | |
9 type :: t | |
10 end type t | |
11 | |
12 type(c_ptr) :: tt_cptr | |
13 class(t), pointer :: tt_fptr | |
14 if (associated(tt_fptr)) tt_cptr = c_loc(tt_fptr) ! { dg-error "shall not be polymorphic" } | |
15 | |
16 end |