C++: Don't use C-style varargs in test.cpp sink

As we prepare to clarify how conversions are treated, we don't want a
`sink(...)` declaration where it's non-obvious which conversions are
applied to arguments.
This commit is contained in:
Jonas Jensen
2019-01-16 09:47:58 +01:00
parent 371c09d4e5
commit 502b7cfe33

View File

@@ -1,5 +1,5 @@
int source();
void sink(...);
void sink(int); void sink(const int *); void sink(int **);
void intraprocedural_with_local_flow() {
int t2;