OSDN Git Service

2006-07-04 Paul Thomas <pault@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / save_common.f90
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