c++: prev declared hidden tmpl friend inst [PR112288]
[official-gcc.git] / gcc / testsuite / gcc.dg / ipa / ipa-sra-25.c
blob46fc1a5457180fbdc3ea924635f8a0d46ad71996
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wmaybe-uninitialized -Werror" } */
4 int cbos();
5 static int aos() {
6 cbos();
7 return 0;
9 int cbos_ptr;
10 long cbos_psize;
11 int cbos() {
12 if (cbos_ptr)
13 return aos();
14 if (cbos_psize)
15 return 1;
16 return 0;