Match: Only allow single use of MIN_EXPR for SAT_TRUNC form 2 [PR115863]
[official-gcc.git] / gcc / testsuite / g++.dg / abi / abi-tag22.C
blobe649233b1224506ffe598d1b9c10194022e421be
1 // PR c++/71712
2 // { dg-options -Wabi=10 }
4 struct __attribute__((abi_tag("A", "B"))) A { };
5 struct A18 {
6   operator A();                 // { dg-warning "mangled name" }
7 };
8 void f18_test() {
9   // { dg-final { scan-assembler "_ZN3A18cv1AB1AB1BEv" } }
10   A a = A18();