URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [fmt_error_2.f90] - Rev 700
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }! { dg-options "-std=legacy" }!! PR 33269: we used to not simplify format strings before checking if! they were valid, leading to a missed error.IMPLICIT CHARACTER*5 (h-z)CHARACTER*5 fCHARACTER*5 bad, goodparameter(bad="a", good="(a)")PRINT ('a'), "hello" ! { dg-error "Missing leading left parenthesis in format string" }WRITE (*, ("a")) "error" ! { dg-error "Missing leading left parenthesis in format string" }PRINT 'a', "hello" ! { dg-error "Missing leading left parenthesis in format string" }WRITE (*, "a") "error" ! { dg-error "Missing leading left parenthesis in format string" }WRITE (*, bad) "error" ! { dg-error "Missing leading left parenthesis in format string" }PRINT 'a' // ', a', "err", "or" ! { dg-error "Missing leading left parenthesis in format string" }PRINT '(' // 'a' ! { dg-error "Unexpected end of format string in format string" }! the following are okPRINT "(2f5.3)", bar, fooPRINT ' (a)', "hello"WRITE (*, " ((a))") "hello"print "(a" // ")", "all is fine"print good, "great"! verify that we haven't broken non-constant expressionsf = "(f5.3)"print f, 3.14159print (f), 2.71813print implicitly_typed, "something"write (*, implicitly_typed_as_well) "something else"END
Go to most recent revision | Compare with Previous | Blame | View Log
