
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
24 lines
500 B
C++
24 lines
500 B
C++
struct A {};
|
|
extern const int variable = 0;
|
|
extern constexpr int function() { return 0; }
|
|
|
|
namespace N {
|
|
struct A {};
|
|
extern const int variable = 0;
|
|
extern constexpr int function() { return 0; }
|
|
}
|
|
|
|
@import redecl_add_after_load_top;
|
|
struct C::A {};
|
|
const int C::variable = 0;
|
|
constexpr int C::function() { return 0; }
|
|
|
|
struct D {
|
|
struct A;
|
|
static const int variable;
|
|
static constexpr int function();
|
|
};
|
|
struct D::A {};
|
|
const int D::variable = 0;
|
|
constexpr int D::function() { return 0; }
|