1 // RUN: clang-cc -fsyntax-only -verify -std=c++0x %s
2 
3 int i = delete; // expected-error {{only functions can have deleted definitions}}
4 
5 void fn() = delete; // expected-note {{candidate function has been explicitly deleted}}
6 
7 void fn2(); // expected-note {{previous declaration is here}}
8 void fn2() = delete; // expected-error {{deleted definition must be first declaration}}
9 
10 void fn3() = delete;
11 void fn3() {
12   // FIXME: This definition should be invalid.
13 }
14 
15 void ov(int) {} // expected-note {{candidate function}}
16 void ov(double) = delete; // expected-note {{candidate function has been explicitly deleted}}
17 
18 struct WithDel {
19   WithDel() = delete; // expected-note {{candidate function has been explicitly deleted}}
20   void fn() = delete; // expected-note {{function has been explicitly marked deleted here}}
21   operator int() = delete;
22   void operator +(int) = delete;
23 
24   int i = delete; // expected-error {{only functions can have deleted definitions}}
25 };
26 
27 void test() {
28   fn(); // expected-error {{call to deleted function 'fn'}}
29   ov(1);
30   ov(1.0); // expected-error {{call to deleted function 'ov'}}
31 
32   WithDel dd; // expected-error {{call to deleted constructor of 'dd'}}
33   WithDel *d = 0;
34   d->fn(); // expected-error {{attempt to use a deleted function}}
35   int i = *d; // expected-error {{incompatible type initializing}}
36 }
37