1! RUN: %flang_fc1 -fdebug-pre-fir-tree -fopenacc %s | FileCheck %s 2 3! Test structure of the Pre-FIR tree with OpenACC declarative construct 4 5! CHECK: Module m: module m 6module m 7 real, dimension(10) :: x 8 ! CHECK-NEXT: OpenACCDeclarativeConstruct 9 !$acc declare create(x) 10end 11! CHECK: End Module m 12