forked from OSchip/llvm-project
[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:
parent
9b6036deed
commit
5508595217
|
@ -118,7 +118,7 @@ auto aab = &unary<int(*)[5]>;
|
||||||
auto aac = &unary<int(&&)[5]>;
|
auto aac = &unary<int(&&)[5]>;
|
||||||
// CHECK: (void (*)(int (&&)[5])) aac = {{.*}}
|
// CHECK: (void (*)(int (&&)[5])) aac = {{.*}}
|
||||||
auto aad = &unary<int(*const)[5]>;
|
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
|
// same test cases with return values, note we can't overload on return type
|
||||||
|
|
Loading…
Reference in New Issue