mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 10:46:07 +00:00

Summary: With recovery expr, it is possible that we have a value-dependent expr within non-dependent context. Reviewers: sammccall, jdoerfert Subscribers: yaxunl, guansong, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D80200
6 lines
204 B
C++
6 lines
204 B
C++
// RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=50 -frecovery-ast %s
|
|
|
|
void foo(int i) {
|
|
#pragma omp target update from(i) device(undef()) // expected-error {{use of undeclared identifier 'undef'}}
|
|
}
|