blob: 8e00620398076f57961373078028744e3c5b13b3 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002
Douglas Gregorff7028a2009-11-13 23:59:09 +00003struct C { // expected-note {{candidate function}}
4 virtual C() = 0; // expected-error{{constructor cannot be declared 'virtual'}} \
5 expected-note {{candidate function}}
Douglas Gregorf4d17c42009-03-27 04:38:56 +00006};
7
8void f() {
Douglas Gregorff7028a2009-11-13 23:59:09 +00009 C c; // expected-error {{call to constructor of 'c' is ambiguous}}
Douglas Gregorf4d17c42009-03-27 04:38:56 +000010}