blob: a0d8441012c57e90568d33c0b375d6580a4a7eee [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
Richard Smith12e79312016-05-13 06:47:56 +00003struct C { // expected-note 1+{{candidate}}
Douglas Gregor39c778b2009-12-20 22:01:25 +00004 virtual C() = 0; // expected-error{{constructor cannot be declared 'virtual'}}
Douglas Gregorf4d17c42009-03-27 04:38:56 +00005};
6
7void f() {
Richard Smith12e79312016-05-13 06:47:56 +00008 C c; // expected-error {{no matching constructor}}
Douglas Gregorf4d17c42009-03-27 04:38:56 +00009}