blob: fece8d48c29f1b1577ad63dbb69c0d19e49a7334 [file] [log] [blame]
// Build don't link:
// Simplified from bug report by Trevor Taylor <ttaylor@powerup.com.au>
struct T {
int operator()(int) { } // ERROR - candidate
};
int main() {
T()(); // ERROR - no such operator
}