On Thu, Jul 31, 2025 at 01:34:14PM -0700, Steve Kargl wrote: > > It seems that > > module foo > implicit none > private > public bar > generic :: bar => bar, bah > end module > > is not accepted. >
As a follow-up, this is accepted with your patch. module foo implicit none private generic, public :: bar => bar, bah end module as is module foo implicit none private generic :: bar => bar, bah public bar end module -- Steve