Added a test for default arguments added to out-of-line member
functions. They work except that name lookup within the default
arguments needs to be deferred until the class definition is complete
(see FIXME in the test).
llvm-svn: 61059
diff --git a/clang/test/SemaCXX/default2.cpp b/clang/test/SemaCXX/default2.cpp
index d55045d..6a8bcb1 100644
--- a/clang/test/SemaCXX/default2.cpp
+++ b/clang/test/SemaCXX/default2.cpp
@@ -44,3 +44,29 @@
int f(X* x = this); // expected-error{{default argument references 'this'}}
}
};
+
+// C++ [dcl.fct.default]p6
+class C {
+ static int x;
+ void f(int i = 3); // expected-note{{previous definition is here}}
+ void g(int i, int j = x);
+
+ void h();
+};
+void C::f(int i = 3) // expected-error{{redefinition of default argument}}
+{ }
+
+void C::g(int i = 88, int j) {}
+
+void C::h() {
+ g(); // okay
+}
+
+// C++ [dcl.fct.default]p9
+class Y {
+ int a;
+ int mem1(int i = a); // expected-error{{invalid use of nonstatic data member 'a'}}
+ // FIXME: The code below is well-formed.
+ // int mem2(int i = b); // OK; use X::b
+ static int b;
+};
diff --git a/clang/www/cxx_status.html b/clang/www/cxx_status.html
index 4b73b67..2bb64e9 100644
--- a/clang/www/cxx_status.html
+++ b/clang/www/cxx_status.html
@@ -853,9 +853,9 @@
<td> 8.3.6 [dcl.fct.default]</td>
<td class="advanced" align="center"></td>
<td class="advanced" align="center"></td>
- <td class="medium" align="center"></td>
+ <td class="advanced" align="center"></td>
<td></td>
- <td>Missing default arguments for out-of-line member functions, templates.</td>
+ <td>Missing default arguments for templates.</td>
</tr>
<tr><td> 8.4 [dcl.fct.def]</td><td></td><td></td><td></td><td></td><td></td></tr>
<tr><td> 8.5 [dcl.init]</td><td></td><td></td><td></td><td></td><td></td></tr>