blob: f04dd713aeab1decece36385c7f033cc1619b393 [file] [log] [blame]
! RUN: not %flang-new -fc1 -fsyntax-only %s 2>&1 | FileCheck %s
! RUN: not %f18 -fparse-only %s 2>&1 | FileCheck %s
! REQUIRES: new-flang-driver
! CHECK: IF statement is not allowed in IF statement
! CHECK: Semantic errors in {{.*}}syntax-only.f90
IF (A > 0.0) IF (B < 0.0) A = LOG (A)
END