aboutsummaryrefslogtreecommitdiff
blob: 0eed3cca2fe90c1e71a392542bfee608d6f2e266 (plain)
1
2
3
4
5
6
7
8
9
! RUN: not %flang-new -fc1 -fsyntax-only %s 2>&1 | FileCheck %s
! RUN: not %f18 -fsyntax-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