[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Lexer / has_feature.cu
blob5cb653593ecd859f216b07d84cdfe1d808fae6bc
1 // RUN: %clang_cc1 -E -triple x86_64-linux-gnu %s -o - | FileCheck %s
3 // CHECK: has_noinline_keyword
4 #if __has_feature(cuda_noinline_keyword)
5 int has_noinline_keyword();
6 #else
7 int no_noinine_keyword();
8 #endif