blob: 29924638112119e11136c4b9f2b6433d1e60c5d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 2002-08-16
class gnu_obj_4
{
public:
static const int elsewhere;
static const int nowhere;
static const int everywhere = 317;
#if __cplusplus >= 201103L
constexpr
#endif
static const float somewhere = 3.14159;
// try to ensure test4 is actually allocated
int dummy;
};
|