blob: 1442b02eb56d23a5826c87e001db709b8c2136d7 [file] [log] [blame]
// Build don't link:
// GROUPS passed constructors
#include <iostream>
class A {
A() {} // private constructor// ERROR - .*
};
int main() {
A* a = new A();// ERROR - .*
if (a) {
std::cout << "a != NULL\n";
} else {
std::cout << "a == NULL\n";
}
}