Merge test.

llvm-svn: 123914
This commit is contained in:
Rafael Espindola 2011-01-20 16:11:21 +00:00
parent 7a2a116bab
commit ec4b30a1e8
2 changed files with 9 additions and 7 deletions

View File

@ -1,7 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only %s
struct bar {
enum xxx {
yyy = sizeof(struct foo*)
};
foo *xxx();
};

View File

@ -68,3 +68,12 @@ void f()
callback<void(const int&)> op;
}
}
namespace PR9007 {
struct bar {
enum xxx {
yyy = sizeof(struct foo*)
};
foo *xxx();
};
}