diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-01-17 02:33:17 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-01-17 02:33:17 +0000 |
commit | 71e377d6eead9cf27bee1b1e3cf5d38175401e89 (patch) | |
tree | 80eae167df9240c405ec9a3444442d167590209f /clang/test/Parser/cxx0x-ambig.cpp | |
parent | b6cb6951351f0d6a7f8bc56d26aba0383ed722c7 (diff) | |
download | bcm5719-llvm-71e377d6eead9cf27bee1b1e3cf5d38175401e89.tar.gz bcm5719-llvm-71e377d6eead9cf27bee1b1e3cf5d38175401e89.zip |
If a function decl cannot be merged, mark it as invalid.
Clang currently crashes on
class C {
C() = default;
C() = delete;
};
My cunning plan for fixing this was to change the `if (!FnD)` in
Parser::ParseCXXInlineMethodDef() to `if (!FnD || FnD->isInvalidDecl)` – but
alas, the second constructor decl wasn't marked as invalid. This lets
Sema::MergeFunctionDecl() return true on function redeclarations, which leads
to them being marked invalid.
This also improves error messages when functions are redeclared.
llvm-svn: 226365
Diffstat (limited to 'clang/test/Parser/cxx0x-ambig.cpp')
-rw-r--r-- | clang/test/Parser/cxx0x-ambig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Parser/cxx0x-ambig.cpp b/clang/test/Parser/cxx0x-ambig.cpp index b06f432c435..a47585f8b64 100644 --- a/clang/test/Parser/cxx0x-ambig.cpp +++ b/clang/test/Parser/cxx0x-ambig.cpp @@ -110,8 +110,8 @@ namespace ellipsis { template<typename...T> struct S { void e(S::S()); - void f(S(...args[sizeof(T)])); // expected-note {{here}} - void f(S(...args)[sizeof(T)]); // expected-error {{redeclared}} expected-note {{here}} + void f(S(...args[sizeof(T)])); // expected-note {{here}} expected-note {{here}} + void f(S(...args)[sizeof(T)]); // expected-error {{redeclared}} void f(S ...args[sizeof(T)]); // expected-error {{redeclared}} void g(S(...[sizeof(T)])); // expected-note {{here}} expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}} void g(S(...)[sizeof(T)]); // expected-error {{function cannot return array type}} |