зеркало из https://github.com/microsoft/clang-1.git
24 строки
354 B
C++
24 строки
354 B
C++
// RUN: clang-cc -fsyntax-only -verify %s
|
|
extern "C" {
|
|
extern "C" void f(int);
|
|
}
|
|
|
|
extern "C++" {
|
|
extern "C++" int& g(int);
|
|
float& g();
|
|
}
|
|
double& g(double);
|
|
|
|
void test(int x, double d) {
|
|
f(x);
|
|
float &f1 = g();
|
|
int& i1 = g(x);
|
|
double& d1 = g(d);
|
|
}
|
|
|
|
extern "C" int foo;
|
|
extern "C" int foo;
|
|
|
|
extern "C" const int bar;
|
|
extern "C" int const bar;
|