Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
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
();
}
}