Skip to content
Snippets Groups Projects
Commit ce4a6878 authored by Richard Smith's avatar Richard Smith
Browse files

Add test for regression caused by reverted patch r315251.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@315366 91177308-0d34-0410-b5e6-96231b3b80d8
parent 6d6c3937
No related branches found
No related tags found
No related merge requests found
......@@ -218,3 +218,34 @@ namespace PR18964 {
unsigned &*foo; //expected-error{{'foo' declared as a pointer to a reference of type}}
extern struct {} *foo; // don't assert
}
namespace typedef_name_for_linkage {
template<typename T> struct Use {};
struct A { A(); A(const A&); ~A(); };
typedef struct {
A a;
} B;
struct C {
typedef struct {
A a;
} D;
};
typedef struct {
void f() { static int n; struct Inner {};}
} E;
// FIXME: Ideally this would be accepted in all modes. In C++98, we trigger a
// linkage calculation to drive the "internal linkage type as template
// argument" warning.
typedef struct {
void f() { struct Inner {}; Use<Inner> ui; }
} F;
#if __cplusplus < 201103L
// expected-error@-2 {{unsupported: typedef changes linkage of anonymous type, but linkage was already computed}}
// expected-note@-5 {{use a tag name here}}
#endif
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment