1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/FrontendC++/2004-11-27-FriendDefaultArgCrash.cpp

10 lines
117 B
C++
Raw Normal View History

2004-11-28 02:22:49 +01:00
// RUN: %llvmgxx %s -o /dev/null -S
// PR447
namespace nm {
struct str {
friend int foo(int arg = 0);
};
}