Test case for PR5134.

llvm-svn: 91965
This commit is contained in:
John McCall 2009-12-23 01:09:14 +00:00
parent 60958a1e56
commit b50c443df2
1 changed files with 7 additions and 0 deletions

View File

@ -40,3 +40,10 @@ namespace test2 {
friend void ::test2::foo::Func(int x);
};
}
// PR5134
namespace test3 {
class Foo {
friend const int getInt(int inInt = 0);
};
}