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