blob: 5028ce99c7b79f6ce3f96df0d0866944d7735204 [file] [log] [blame]
Anders Carlsson370e5382009-11-14 01:51:50 +00001// RUN: clang-cc -emit-llvm %s -o - -triple=x86_64-apple-darwin10
2
3// PR5484
4namespace PR5484 {
5struct A { };
6extern A a;
7
8void f(const A & = a);
9
10void g() {
11 f();
12}
13}