xref: /llvm-project/flang/test/Lower/OpenMP/declare-target-interface.f90 (revision 89b31c9c32f2cd2c038fe2b12d9c66a53c779fc1)
1!RUN: %flang_fc1 -emit-hlfir -fopenmp %s -o - | FileCheck %s
2!RUN: %flang_fc1 -emit-hlfir -fopenmp -fopenmp-is-device %s -o - | FileCheck %s
3
4!CHECK: module attributes
5module iface
6interface
7  subroutine a()
8  !$omp declare target
9  end subroutine
10end interface
11end module
12