summaryrefslogtreecommitdiffstats
path: root/test/CodeCompletion/this-quals.cpp
blob: eeaed00aa85713912e9a0f89d39a7d37772df920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class foo {
  void mut_func() {
    [this]() {

    }();
    // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:4:1 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
    // CHECK-CC1: const_func
    // CHECK-CC1: mut_func
  }

  void const_func() const {
    [this]() {

    }();
    // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:13:1 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s
    // CHECK-CC2-NOT: mut_func
    // CHECK-CC2: const_func
  };
};