Lines Matching defs:S5
43 class S5 {
45 S5(const S5 &s5) : a(s5.a) {} // expected-note 4 {{implicitly declared private here}}
48 S5() : a(0) {}
49 S5(int v) : a(v) {}
100 #pragma omp single firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
124 #pragma omp single firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
147 S5 g(5);
208 #pragma omp single firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
226 #pragma omp single firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
246 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}