Test case for r104938.

llvm-svn: 104939
This commit is contained in:
John McCall 2010-05-28 06:14:52 +00:00
parent 0af3d3b0f4
commit cd4b3ba316
1 changed files with 11 additions and 0 deletions

View File

@ -86,3 +86,14 @@ namespace P {
}
}
namespace test5 {
namespace NS {
struct A;
void foo(void (*)(A&));
}
void bar(NS::A& a);
void test() {
foo(&bar);
}
}