mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 09:21:31 -05:00
13 lines
169 B
C++
13 lines
169 B
C++
// 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();
|
|
}
|
|
}
|