hanchenye-llvm-project/llvm/test/FrontendC++/2004-11-27-FriendDefaultArg...

10 lines
117 B
C++

// RUN: %llvmgxx %s -o /dev/null -S
// PR447
namespace nm {
struct str {
friend int foo(int arg = 0);
};
}