blob: f2f9f43a10d4aeb4f9341f5233df4304b2afdef0 [file] [log] [blame]
Douglas Gregor33297562009-03-27 04:38:56 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3struct C {
4 virtual C() = 0; // expected-error{{constructor cannot be declared 'virtual'}}
5};
6
7void f() {
8 C c;
9}