PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / save_common.f90
blobc9878026cbf7c90dcbbb0e7a4fa2a7bef4fffdab
1 ! { dg-do compile }
2 ! PR20847 - A common variable may not have the SAVE attribute.
3 ! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
4 INTEGER, SAVE :: X
5 COMMON /COM/ X ! { dg-error "conflicts with SAVE attribute" }
6 END