1 // Build don't link:
2 // GROUPS passed constructors
3 #include <iostream>
4 
5 class A {
A()6    A() {}    // private constructor// ERROR - .*
7 };
8 
main()9 int main() {
10   A* a = new A();// ERROR - .*
11   if (a) {
12      std::cout << "a != NULL\n";
13   } else {
14      std::cout << "a == NULL\n";
15   }
16 }
17 
18 
19