1*67e74705SXin Li // RUN: %clang_cc1 -fsyntax-only -verify %s 2*67e74705SXin Li 3*67e74705SXin Li struct C { // expected-note 1+{{candidate}} 4*67e74705SXin Li virtual C() = 0; // expected-error{{constructor cannot be declared 'virtual'}} 5*67e74705SXin Li }; 6*67e74705SXin Li f()7*67e74705SXin Livoid f() { 8*67e74705SXin Li C c; // expected-error {{no matching constructor}} 9*67e74705SXin Li } 10