File tree Expand file tree Collapse file tree 2 files changed +14
-69
lines changed
clang/test/CodeCompletion Expand file tree Collapse file tree 2 files changed +14
-69
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -41,3 +41,17 @@ void func() {
41
41
// Runs completion at empty line on line 37.
42
42
// RUN: not %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-5):1 %s -o - | FileCheck -check-prefix=CHECK-CC4 %s
43
43
// CHECK-CC4: COMPLETION: Pattern : void vfunc(bool param, int p) override{{$}}
44
+
45
+ class NoexceptBase {
46
+ public:
47
+ virtual void method () noexcept ;
48
+ };
49
+
50
+ class NoexceptDerived : public NoexceptBase {
51
+ public:
52
+ met;
53
+ };
54
+
55
+ // Runs completion at met^ on line 52.
56
+ // RUN: not %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-4):6 %s -o - | FileCheck -check-prefix=CHECK-CC5 %s
57
+ // CHECK-CC5: COMPLETION: Pattern : void method() noexcept override{{$}}
You can’t perform that action at this time.
0 commit comments