operators34.C   [plain text]


// Build don't link: 
// GROUPS passed operators
class A {
    public:
      A() {
      }
};

static class A *A_new_() {
    return new class A;
}