+2004-07-11 Paul Brook <paul@codesourcery.com>
+
+ PR fortran/15986
+ * parse.c (gfc_fixup_sibling_symbols): Also look for untyped
+ variables.
+ (parse_contained): Mark contained symbols as referenced.
+
2004-07-11 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
PR fortran/16455
continue;
old_sym = st->n.sym;
- if (old_sym->attr.flavor == FL_PROCEDURE && old_sym->ns == ns
+ if ((old_sym->attr.flavor == FL_PROCEDURE
+ || old_sym->ts.type == BT_UNKNOWN)
+ && old_sym->ns == ns
&& ! old_sym->attr.contained)
{
/* Replace it with the symbol from the parent namespace. */
/* Mark this as a contained function, so it isn't replaced
by other module functions. */
sym->attr.contained = 1;
+ sym->attr.referenced = 1;
/* Fix up any sibling functions that refer to this one. */
gfc_fixup_sibling_symbols (sym, gfc_current_ns);
+2004-07-11 Paul Brook <paul@codesourcery.com>
+
+ PR fortran/15986
+ * gfortran.dg/contained_1.f90: New test.
+
2004-07-11 Mark Mitchell <mark@codesourcery.com>
* g++.dg/parse/defarg8.C: New test.
--- /dev/null
+! PR15986
+! Siblings may be used as actual arguments, in which case they look like
+! variables during parsing. Also checks that actual variables aren't replaced
+! by siblings with the same name
+! { dg-do run }
+module contained_1_mod
+integer i
+contains
+subroutine a
+ integer :: c = 42
+ call sub(b, c)
+end subroutine a
+subroutine b()
+ i = i + 1
+end subroutine b
+subroutine c
+end subroutine
+end module
+
+subroutine sub (proc, var)
+ external proc1
+ integer var
+
+ if (var .ne. 42) call abort
+ call proc
+end subroutine
+
+program contained_1
+ use contained_1_mod
+ i = 0
+ call a
+ if (i .ne. 1) call abort
+end program