llvm-6502/test/FrontendC++/2004-11-27-FriendDefaultArgCrash.cpp

10 lines
117 B
C++
Raw Normal View History

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