blob: 1f1f60d19c2fb26688a056804228665bd1ad35d3 [file] [log] [blame]
// { dg-do assemble }
// Simplified from bug report by Trevor Taylor <ttaylor@powerup.com.au>
struct T {
int operator()(int) { } // { dg-message "candidates" }
};
int main() {
T()(); // { dg-error "match" } no such operator
}