mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-10 22:43:40 +00:00
* Add C++ pointer null ellipsis ranks * test(cpp): Strengthen pointer overload assertions --------- Co-authored-by: Gergő Magyar <gergomagyar@icloud.com>
12 lines
240 B
C++
12 lines
240 B
C++
#include "lib.h"
|
|
|
|
void Service::f(int* p) {}
|
|
void Service::f(bool flag) {}
|
|
|
|
void Service::g(int a, int b) {}
|
|
void Service::g(int a, ...) {}
|
|
|
|
void Service::h(int a, double b) {}
|
|
void Service::h(int a, ...) {}
|
|
|
|
void Service::k(int a, ...) {}
|