1! { dg-do compile }
2! { dg-options "-Wno-align-commons" }
3
4! PR fortran/37486
5!
6! Test for -Wno-align-commons.
7!
8! Contributed by Janus Weil <janus@gcc.gnu.org>.
9
10implicit none
11integer(kind=4) :: n
12real(kind=8) :: p
13common /foo/ n,p   ! { dg-bogus "padding" }
14end
15