2 ! { dg-options "-std=legacy" }
4 ! PR 33269: we used to not simplify format strings before checking if
5 ! they were valid, leading to a missed error.
7 IMPLICIT CHARACTER*5 (h
-z
)
11 parameter(bad
="a", good
="(a)")
13 PRINT ('a'), "hello" ! { dg-error "Missing leading left parenthesis in format string" }
14 WRITE (*, ("a")) "error" ! { dg-error "Missing leading left parenthesis in format string" }
16 PRINT 'a', "hello" ! { dg-error "Missing leading left parenthesis in format string" }
17 WRITE (*, "a") "error" ! { dg-error "Missing leading left parenthesis in format string" }
18 WRITE (*, bad
) "error" ! { dg-error "Missing leading left parenthesis in format string" }
20 PRINT 'a' // ', a', "err", "or" ! { dg-error "Missing leading left parenthesis in format string" }
22 PRINT '(' // 'a' ! { dg-error "Unexpected end of format string in format string" }
24 ! the following are ok
25 PRINT "(2f5.3)", bar
, foo
27 WRITE (*, " ((a))") "hello"
28 print "(a" // ")", "all is fine"
31 ! verify that we haven't broken non-constant expressions
35 print implicitly_typed
, "something"
36 write (*, implicitly_typed_as_well
) "something else"