
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
751 B
C++
24 lines
751 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
struct S {
|
|
S(); // expected-note {{because type 'S' has a user-provided default constructor}}
|
|
};
|
|
|
|
struct { // expected-error {{anonymous structs and classes must be class members}}
|
|
};
|
|
|
|
struct E {
|
|
struct {
|
|
S x; // expected-error {{anonymous struct member 'x' has a non-trivial constructor}}
|
|
};
|
|
static struct {
|
|
};
|
|
};
|
|
|
|
template <class T> void foo(T);
|
|
typedef struct { // expected-note {{use a tag name here to establish linkage prior to definition}} expected-note {{declared here}}
|
|
void test() {
|
|
foo(this); // expected-warning {{template argument uses unnamed type}}
|
|
}
|
|
} A; // expected-error {{unsupported: typedef changes linkage of anonymous type, but linkage was already computed}}
|