[lldb] fix test expectation broken by clang fix at D110216

Signed-off-by: Matheus Izvekov <mizvekov@gmail.com>

Differential Revision: https://reviews.llvm.org/D113722
This commit is contained in:
Matheus Izvekov 2021-11-12 01:27:27 +01:00
parent 9b6036deed
commit 5508595217
No known key found for this signature in database
GPG key ID: 5C771D2BB8AB9907

View file

@ -118,7 +118,7 @@ auto aab = &unary<int(*)[5]>;
auto aac = &unary<int(&&)[5]>;
// CHECK: (void (*)(int (&&)[5])) aac = {{.*}}
auto aad = &unary<int(*const)[5]>;
// CHECK: (void (*)(int (*)[5])) aad = {{.*}}
// CHECK: (void (*)(int (*const)[5])) aad = {{.*}}
// same test cases with return values, note we can't overload on return type