Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
f155dbf901b77f0faa90a48670c0bdae7fbdea2d
/
.
/
test
/
CodeGenCXX
/
default-arguments.cpp
blob: 5028ce99c7b79f6ce3f96df0d0866944d7735204 [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm %s -o - -triple=x86_64-apple-darwin10
// PR5484
namespace
PR5484
{
struct
A
{
};
extern
A a
;
void
f
(
const
A
&
=
a
);
void
g
()
{
f
();
}
}