! RUN: bbc %s -o "-" -emit-fir | FileCheck %s ! Test lowering of calls to procedures with implicit interfaces using different ! calls with different argument types, one of which is character subroutine s2 integer i(3) ! CHECK: %[[a0:.*]] = fir.alloca !fir.array<3xi32> {bindc_name = "i", uniq_name = "_QFs2Ei"} ! CHECK: fir.call @_QPsub2(%[[a0]]) : (!fir.ref>) -> () call sub2(i) ! CHECK: %[[a1:.*]] = fir.address_of(@_QQcl.3031323334) : !fir.ref> ! CHECK: %[[a2:.*]] = fir.convert %[[a1]] : (!fir.ref>) -> !fir.ref> ! CHECK: %[[a3:.*]] = fir.convert %[[a2]] : (!fir.ref>) -> !fir.ref> ! CHECK: fir.call @_QPsub2(%[[a3]]) : (!fir.ref>) -> () call sub2("01234") end