Home
last modified time | relevance | path

Searched refs:template_capture_var (Results 1 – 2 of 2) sorted by relevance

/external/clang/test/SemaCXX/
Dcaptured-statements.cpp55 void template_capture_var() { in template_capture_var() function
76 template_capture_var<int>(); // OK in test_capture_var()
77template_capture_var<int&>(); // expected-note{{in instantiation of function template specializati… in test_capture_var()
84 S template_capture_var(S x, T y) { // expected-note{{variable 'y' declared const here}} in template_capture_var() function
96 template_capture_var<int, int>(0, 1); // OK in test_capture_var_error()
97template_capture_var<int, const int>(0, 1); // expected-note{{in instantiation of function templat… in test_capture_var_error()
98 template_capture_var<int, int>(0, 1); // OK in test_capture_var_error()
/external/clang/test/CodeGenCXX/
Dcaptured-statements.cpp109 void template_capture_var() { in template_capture_var() function
143 template_capture_var<int, 201>(); in test_capture_var()