2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / warn7.C
blob3fb78895acb10a6fbf32ec8f60c28b2e2a9b55f7
1 // { dg-do assemble  }
2 // { dg-options "-Wall" }
4 const int& foo() {
5   extern int bar;
6   
7   return bar;
10 const int* baz() {
11   extern int bar;
12   
13   return &bar;