int main()
{
// create some objects of type 'testing', setting a value member to the given value
testing a(1),b(2);
// print the number of objects of type 'testing' and their values
testing::listing();
}
#include <iostream>
using namespace std;
int foo(int i) {
cout << i << endl;
};
int main() {
foo((1,2));
foo(1,2);
}