opnsense-src/test/FrontendC++/2004-11-27-FriendDefaultArgCrash.cpp

10 lines
117 B
C++
Raw Normal View History

2009-06-02 13:52:33 -04:00
// RUN: %llvmgxx %s -o /dev/null -S
// PR447
namespace nm {
struct str {
friend int foo(int arg = 0);
};
}