aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/bogus1.C
blob: c61dea8e77e570ae628b817b6a70b2387cd23322 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:

namespace N {}

void f(int N::k); // ERROR - cannot use `::' in parameter declaration

class Foo
{
  int N::j; // ERROR - invalid use of `::'
};