blob: f2f9f43a10d4aeb4f9341f5233df4304b2afdef0 [file] [log] [blame]
Douglas Gregor33297562009-03-27 04:38:56 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
Douglas Gregorcad84b72009-11-13 23:14:53 +00003struct C {
4 virtual C() = 0; // expected-error{{constructor cannot be declared 'virtual'}}
Douglas Gregor33297562009-03-27 04:38:56 +00005};
6
7void f() {
Douglas Gregorcad84b72009-11-13 23:14:53 +00008 C c;
Douglas Gregor33297562009-03-27 04:38:56 +00009}