PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / g++.dg / pr70590-2.C
blobfd79dbfc88301506948cc5e2c1ca71add4c18c15
1 // PR c++/70590
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-O2" }
5 int a;
7 constexpr int *foo = &a;
9 void blah (int *);
11 void
12 bar ()
14   blah (foo);
17 void
18 baz ()
20   blah (foo);