[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaCUDA / gnu-inline.cu
blobe383082f2a773f6b0309f48ffd1f89bb0c0e5823
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 #include "Inputs/cuda.h"
5 // expected-no-diagnostics
7 // Check that we can handle gnu_inline functions when compiling in CUDA mode.
9 void foo();
10 extern inline __attribute__((gnu_inline)) void bar() { foo(); }