c++: P0847R7 (deducing this) - xobj lambdas. [PR102609]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / inline-asm1.C
bloba7835c7199e057b2036cd866bd5995c244b16d7e
1 // P1668R1: Permit unevaluated inline asm in constexpr functions
2 // PR c++/91346
3 // { dg-do compile { target c++14 } }
4 // { dg-options "" }
6 constexpr int
7 foo (int a, int b)
9   if (__builtin_is_constant_evaluated ())
10     return a + b;
11   asm (""); // { dg-warning ".asm. in .constexpr. function only available with" "" { target c++17_down } }
12   return a;