2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / initialization_4.f90
blob24ccf9c6457392d61a0cb4cd8476b96e7c28c430
1 ! PR 29441 : No error was given for disallowed function in
2 ! initialization expression, even if -std=f95 was used
3 ! { dg-do compile }
4 ! { dg-options "-std=f95" }
5 real, parameter :: pi = 4.0*Atan(1.0) ! { dg-error "Fortran 2003: Elemental function as initialization expression" }
6 real, parameter :: three = 27.0**(1.0/3.0) ! { dg-error "Noninteger exponent in an initialization expression" }
7 end