i386: Fix AVX512 intrin macro typo
[official-gcc.git] / gcc / testsuite / g++.dg / overload / conv-op1.C
blobd3096192bfa2f9a7ee0befca31cb3ba5d184a9cc
1 // PR c++/47703
3 typedef void (*pfn)(int &);
5 struct A
7   operator pfn() { return 0; }
8 };
10 void f()
12   const int i = 42;
13   A()(i);                       // { dg-message "(conversion)" }
14   // { dg-error "qualifiers" "" { target *-*-* } .-1 }
17 // { dg-prune-output "no match" }