2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / ns16.C
blob5860dcb0a8b75502875edc15829ef6457605ac0c
1 // { dg-do assemble  }
3 class Y {
4 public:
5   void operator +(int) const;
6 };
8 namespace X {
9   extern Y const& z;
12 void f(void) {
13   X::z + 1;