[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / 2004-11-27-FriendDefaultArgCrash.cpp
blobc478e7dcae1d92696dd6c279ee33de82789194e1
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 // PR447
5 namespace nm {
6 struct str {
7 friend void foo(int arg = 0) {};
8 };