xref: /llvm-project/flang/test/Semantics/oldparam03.f90 (revision e7be90bd27051c3dcd9a344cb1b347a0c9454c21)
1! RUN: not %flang_fc1 -fsyntax-only %s 2>&1 | FileCheck %s
2
3! Ensure that old-style PARAMETER statements are disabled by default.
4
5!CHECK: error: expected '('
6parameter x = 666
7end
8