1!RUN: %flang -fsyntax-only -pedantic %s 2>&1 | FileCheck %s 2integer, parameter :: j = 10 3! CHECK: Implied DO index 'j' uses an object of the same name in its bounds expressions 4real :: a(10) = [(j, j=1,j)] 5end 6