fix pr/45972
[official-gcc.git] / gcc / testsuite / gfortran.dg / func_result_4.f90
blob81f02a57ca2854dfa9e878c15f94f7d9bc8a3337
1 ! { dg-do "compile" }
2 ! { dg-options "-c" }
4 ! Do not apply the SAVE attribute to function results.
6 FUNCTION f() RESULT (g)
7 INTEGER :: g
8 SAVE
9 g = 42
10 END FUNCTION