llvm-for-llvmta/tools/clang/test/CodeGenCXX/2004-11-27-FriendDefaultArg...

10 lines
131 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
// PR447
namespace nm {
struct str {
friend void foo(int arg = 0) {};
};
}