bolt/deps/llvm-18.1.8/clang/test/CodeCompletion/enable-if-attr-crash.cpp
2025-02-14 19:21:04 +01:00

8 lines
227 B
C++

int foo(bool x) __attribute__((enable_if(x, "")));
int test() {
bool fffffff;
// RUN: %clang_cc1 -std=c++11 -code-completion-at=%s:%(line+2):8 %s | FileCheck %s
// CHECK: COMPLETION: fffffff : [#bool#]fffffff
foo(ff
}