Merge pr-3188.cpp into constructor.cpp.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61370 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sebastian Redl 2008-12-23 16:41:32 +00:00
Родитель a3ab4b85f5
Коммит 1f5432c227
2 изменённых файлов: 10 добавлений и 3 удалений

Просмотреть файл

@ -27,3 +27,13 @@ typedef struct {
extern const Anon anon;
extern "C" const Anon anon2;
// PR3188: The extern declaration complained about not having an appropriate
// constructor.
struct x;
extern x a;
// A similar case.
struct y {
y(int);
};
extern y b;

Просмотреть файл

@ -1,3 +0,0 @@
// RUN: clang -fsyntax-only %s
struct x;
extern x a;