blob: 2014f9b50e4ce0f633cf94437cbc5fef1c8d9884 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// PR c++/13140
struct foo {
foo();
void f();
static int i;
};
namespace bar {
foo::foo() {} // { dg-error "namespace" }
void foo::f() {} // { dg-error "namespace" }
int foo::i; // { dg-error "namespace" }
}
|