Home | History | Annotate | Download | only in OpenMP

Lines Matching refs: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) {}
120 #pragma omp sections firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
156 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
185 S5 g(5);
282 #pragma omp sections firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
312 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
347 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}