summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/use_11.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/use_11.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/use_11.f9018
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/use_11.f90 b/gcc/testsuite/gfortran.dg/use_11.f90
new file mode 100644
index 000000000..02efe8e51
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/use_11.f90
@@ -0,0 +1,18 @@
+! { dg-do run }
+! Test the fix for a regression caused by the fix for PR33541,
+! in which the second local version of a would not be associated.
+!
+! Contributed by Dominique d'Humieres <dominiq@lps.ens.fr>
+! and Tobias Burnus <burnus@gcc.gnu.org>
+!
+module m
+ integer :: a
+end module m
+
+use m, local1 => a
+use m, local2 => a
+local1 = 5
+local2 = 3
+if (local1 .ne. local2) call abort ()
+end
+! { dg-final { cleanup-modules "test" } }