
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
25 lines
763 B
C++
25 lines
763 B
C++
typedef struct A B;
|
|
extern const int variable;
|
|
extern constexpr int function();
|
|
constexpr int test(bool b) { return b ? variable : function(); }
|
|
|
|
namespace N {
|
|
typedef struct A B;
|
|
extern const int variable;
|
|
extern constexpr int function();
|
|
}
|
|
typedef N::B NB;
|
|
constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
|
|
|
|
@import redecl_add_after_load_top;
|
|
typedef C::A CB;
|
|
constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
|
|
|
|
struct D {
|
|
struct A; // expected-note {{forward}}
|
|
static const int variable;
|
|
static constexpr int function(); // expected-note {{here}}
|
|
};
|
|
typedef D::A DB;
|
|
constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
|