blob: bcd679671c204481b1cd585d415f36d6943d80d9 (
plain)
1
2
3
4
5
6
7
8
|
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
}
|