summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/default-arguments.cpp
blob: 5028ce99c7b79f6ce3f96df0d0866944d7735204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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();
}
}
OpenPOWER on IntegriCloud