Skip to content

Commit

Permalink
[lldb][test] explicit-member-function-quals.cpp: fix expected output
Browse files Browse the repository at this point in the history
The `type lookup` output looks different.
  • Loading branch information
Michael137 committed Jan 31, 2025
1 parent 650beee commit 8bd7281
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@
// CHECK: (lldb) type lookup Foo
// CHECK-NEXT: struct Foo {
// CHECK-NEXT: void Method(Foo);
// CHECK-NEXT: void cMethod(Foo const&);
// CHECK-NEXT: void vMethod(Foo volatile&);
// CHECK-NEXT: void cvMethod(const Foo volatile&) const volatile;
// CHECK-NEXT: void cMethod(const Foo &) const;
// CHECK-NEXT: void vMethod(volatile Foo &) volatile;
// CHECK-NEXT: void cvMethod(const volatile Foo &) const volatile;
// CHECK-NEXT: }

struct Foo {

0 comments on commit 8bd7281

Please sign in to comment.