[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeCompletion / this-quals.cpp
blobbf89ba5af5f7fb48f210b13860ebb2ce7c23bb0b
1 class foo {
2 void mut_func() {
3 [this]() {
5 }();
6 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-2):1 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
7 // CHECK-CC1: const_func
8 // CHECK-CC1: mut_func
11 void const_func() const {
12 [this]() {
14 }();
15 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-2):1 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s
16 // CHECK-CC2-NOT: mut_func
17 // CHECK-CC2: const_func