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();
}
}