Add gcc.gnu.org account names to MAINTAINERS
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / compile / name_clash.f90
blob7b8c0c7d1fc521cafe6ad5095749a05d93e4ecd6
1 ! This is the testcase from PR13249.
2 ! the two different entities named AN_EXAMPLE shouldn't conflict
3 MODULE MOD
4 INTEGER FOO
5 END
6 PROGRAM MAIN
7 USE MOD
8 COMMON /FOO/ BAR
9 END