Searched refs:template_capture_var (Results 1 – 2 of 2) sorted by relevance
55 void template_capture_var() { in template_capture_var() function76 template_capture_var<int>(); // OK in test_capture_var()77 …template_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() function96 template_capture_var<int, int>(0, 1); // OK in test_capture_var_error()97 …template_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()
109 void template_capture_var() { in template_capture_var() function143 template_capture_var<int, 201>(); in test_capture_var()