blob: f3d726fbeed907f781b53874ae5a73bbc51d90d0 [file] [log] [blame]
Chris Lattner04421082008-04-08 04:40:51 +00001// RUN: clang -fsyntax-only -verify %s
Sebastian Redlddf7e992009-02-08 10:28:44 +00002
Chris Lattner04421082008-04-08 04:40:51 +00003void f(int i, int j, int k = 3);
Douglas Gregor6d6eb572008-05-07 04:49:29 +00004void f(int i, int j, int k);
Chris Lattner04421082008-04-08 04:40:51 +00005void f(int i, int j = 2, int k);
Douglas Gregor6d6eb572008-05-07 04:49:29 +00006void f(int i, int j, int k);
Chris Lattner04421082008-04-08 04:40:51 +00007void f(int i = 1, int j, int k);
Douglas Gregor6d6eb572008-05-07 04:49:29 +00008void f(int i, int j, int k);
Chris Lattner04421082008-04-08 04:40:51 +00009
10void i()
11{
12 f();
13 f(0);
14 f(0, 1);
15 f(0, 1, 2);
16}
Chris Lattner8123a952008-04-10 02:22:51 +000017
18
19int f1(int i, int i, int j) { // expected-error {{redefinition of parameter 'i'}}
20 i = 17;
21 return j;
22}
23
24int x;
25void g(int x, int y = x); // expected-error {{default argument references parameter 'x'}}
26
27void h()
28{
29 int i;
30 extern void h2(int x = sizeof(i)); // expected-error {{default argument references local variable 'i' of enclosing function}}
31}
Chris Lattner9e979552008-04-12 23:52:44 +000032
33void g2(int x, int y, int z = x + y); // expected-error {{default argument references parameter 'x'}} expected-error {{default argument references parameter 'y'}}
Douglas Gregor6d6eb572008-05-07 04:49:29 +000034
35void nondecl(int (*f)(int x = 5)) // {expected-error {{default arguments can only be specified}}}
36{
37 void (*f2)(int = 17) // {expected-error {{default arguments can only be specified}}}
38 = (void (*)(int = 42))f; // {expected-error {{default arguments can only be specified}}}
39}
Douglas Gregor30c54362008-11-03 22:47:57 +000040
41class X {
42 void f(X* x = this); // expected-error{{invalid use of 'this' outside of a nonstatic member function}}
Douglas Gregor3996f232008-11-04 13:41:56 +000043
44 void g() {
45 int f(X* x = this); // expected-error{{default argument references 'this'}}
46 }
Douglas Gregor30c54362008-11-03 22:47:57 +000047};
Douglas Gregor69497c32008-12-16 00:08:34 +000048
49// C++ [dcl.fct.default]p6
50class C {
51 static int x;
52 void f(int i = 3); // expected-note{{previous definition is here}}
53 void g(int i, int j = x);
54
55 void h();
56};
57void C::f(int i = 3) // expected-error{{redefinition of default argument}}
58{ }
59
60void C::g(int i = 88, int j) {}
61
62void C::h() {
63 g(); // okay
64}
65
66// C++ [dcl.fct.default]p9
Douglas Gregor72b505b2008-12-16 21:30:33 +000067struct Y {
Douglas Gregor69497c32008-12-16 00:08:34 +000068 int a;
69 int mem1(int i = a); // expected-error{{invalid use of nonstatic data member 'a'}}
Douglas Gregor72b505b2008-12-16 21:30:33 +000070 int mem2(int i = b); // OK; use Y::b
Douglas Gregor0a59acb2008-12-16 00:38:16 +000071 int mem3(int i);
72 int mem4(int i);
Douglas Gregor72b505b2008-12-16 21:30:33 +000073
74 struct Nested {
75 int mem5(int i = b, // OK; use Y::b
76 int j = c, // OK; use Y::Nested::c
77 int k = j, // expected-error{{default argument references parameter 'j'}}
78 int l = a, // expected-error{{invalid use of nonstatic data member 'a'}}
79 Nested* self = this, // expected-error{{invalid use of 'this' outside of a nonstatic member function}}
80 int m); // expected-error{{missing default argument on parameter 'm'}}
81 static int c;
82 };
83
Douglas Gregor69497c32008-12-16 00:08:34 +000084 static int b;
Douglas Gregor72b505b2008-12-16 21:30:33 +000085
86 int (*f)(int = 17); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
87
88 void mem8(int (*fp)(int) = (int (*)(int = 17))0); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
Douglas Gregor69497c32008-12-16 00:08:34 +000089};
Douglas Gregor0a59acb2008-12-16 00:38:16 +000090
91int Y::mem3(int i = b) { return i; } // OK; use X::b
92
93int Y::mem4(int i = a) // expected-error{{invalid use of nonstatic data member 'a'}}
94{ return i; }
Douglas Gregor72b505b2008-12-16 21:30:33 +000095
96
97// Try to verify that default arguments interact properly with copy
98// constructors.
99class Z {
100public:
Sebastian Redl00d50742009-02-08 14:56:26 +0000101 Z(Z&, int i = 17); // expected-note 2 {{candidate function}}
Douglas Gregor72b505b2008-12-16 21:30:33 +0000102
103 void f(Z& z) {
104 Z z2; // expected-error{{no matching constructor for initialization}}
105 Z z3(z);
106 }
Douglas Gregor61366e92008-12-24 00:01:03 +0000107
108 void test_Z(const Z& z) {
109 Z z2(z); // expected-error{{no matching constructor for initialization of 'z2'}}
110 }
Douglas Gregor72b505b2008-12-16 21:30:33 +0000111};
112
113void test_Z(const Z& z) {
114 Z z2(z); // expected-error{{no matching constructor for initialization of 'z2'}}
115}
Douglas Gregor61366e92008-12-24 00:01:03 +0000116
117struct ZZ {
118 void f(ZZ z = g()); // expected-error{{no matching constructor for initialization}}
119
120 static ZZ g(int = 17);
121
122 ZZ(ZZ&, int = 17); // expected-note{{candidate function}}
123};