Mercurial > hg > CbC > CbC_llvm
view flang/test/Semantics/modfile16.f90 @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | c4bab56944e8 |
children |
line wrap: on
line source
! RUN: %python %S/test_modfile.py %s %flang_fc1 module m character(2), parameter :: prefix = 'c_' integer, bind(c, name='c_a') :: a procedure(sub), bind(c, name=prefix//'b') :: b type, bind(c) :: t real :: c end type contains subroutine sub() bind(c, name='sub') end end !Expect: m.mod !module m ! character(2_4,1),parameter::prefix="c_" ! integer(4),bind(c, name="c_a")::a ! procedure(sub),bind(c, name="c_b")::b ! type,bind(c)::t ! real(4)::c ! end type !contains ! subroutine sub() bind(c, name="sub") ! end !end