]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/gomp/pr26690-1.C
call.c (struct conversion_info): Rename 'from_type' to 'from'.
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / gomp / pr26690-1.C
1 // PR c++/26690
2 // { dg-do compile }
3
4 struct A // { dg-message "A::A|candidate expects" }
5 {
6 A (int); // { dg-message "note" }
7 };
8
9 void
10 foo ()
11 {
12 A a(0);
13 #pragma omp parallel private (a) // { dg-error "no matching function" }
14 ;
15 }