blob: 50fdc9622e4c7ecde2869e0278f4f7c5f2515218 [file] [log] [blame]
Douglas Gregor33297562009-03-27 04:38:56 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
Chris Lattnereaaebc72009-04-25 08:06:05 +00003struct C { // expected-note {{candidate function}}
4 virtual C() = 0; // expected-error{{constructor cannot be declared 'virtual'}} \
5 expected-note {{candidate function}}
Douglas Gregor33297562009-03-27 04:38:56 +00006};
7
8void f() {
Chris Lattnereaaebc72009-04-25 08:06:05 +00009 C c; // expected-error {{call to constructor of 'c' is ambiguous}}
Douglas Gregor33297562009-03-27 04:38:56 +000010}