2012-12-27 11:56:20 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
|
|
|
|
namespace test1 {
|
|
|
|
int x; // expected-note {{previous definition is here}}
|
2013-02-14 09:18:37 +08:00
|
|
|
static int y;
|
2012-12-27 11:56:20 +08:00
|
|
|
void f() {} // expected-note {{previous definition is here}}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern int x; // expected-error {{declaration of 'x' has a different language linkage}}
|
2013-02-14 09:18:37 +08:00
|
|
|
extern int y; // OK, has internal linkage, so no language linkage.
|
2012-12-27 11:56:20 +08:00
|
|
|
void f(); // expected-error {{declaration of 'f' has a different language linkage}}
|
|
|
|
}
|
|
|
|
}
|
2012-12-28 22:21:58 +08:00
|
|
|
|
2013-02-14 11:31:26 +08:00
|
|
|
// FIXME: This should be OK. Both test2_f don't have language linkage since they
|
|
|
|
// have internal linkage.
|
2012-12-28 22:21:58 +08:00
|
|
|
extern "C" {
|
2013-02-14 11:31:26 +08:00
|
|
|
static void test2_f() { // expected-note {{previous definition is here}}
|
2012-12-28 22:21:58 +08:00
|
|
|
}
|
2013-02-14 11:31:26 +08:00
|
|
|
static void test2_f(int x) { // expected-error {{conflicting types for 'test2_f'}}
|
2012-12-28 22:21:58 +08:00
|
|
|
}
|
|
|
|
}
|
2013-01-05 09:28:37 +08:00
|
|
|
|
|
|
|
namespace test3 {
|
|
|
|
extern "C" {
|
|
|
|
namespace {
|
|
|
|
extern int x2;
|
|
|
|
void f2();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
namespace {
|
|
|
|
int x2;
|
|
|
|
void f2() {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace test4 {
|
|
|
|
void dummy() {
|
|
|
|
void Bar();
|
|
|
|
class A {
|
|
|
|
friend void Bar();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2013-01-10 00:34:58 +08:00
|
|
|
|
|
|
|
namespace test5 {
|
|
|
|
static void g();
|
|
|
|
void f()
|
|
|
|
{
|
|
|
|
void g();
|
|
|
|
}
|
|
|
|
}
|
2013-01-12 09:01:06 +08:00
|
|
|
|
|
|
|
// pr14898
|
|
|
|
namespace test6 {
|
|
|
|
template <class _Rp>
|
|
|
|
class __attribute__ ((__visibility__("default"))) shared_future;
|
|
|
|
template <class _Rp>
|
|
|
|
class future {
|
|
|
|
template <class> friend class shared_future;
|
|
|
|
shared_future<_Rp> share();
|
|
|
|
};
|
|
|
|
template <class _Rp> future<_Rp>
|
|
|
|
get_future();
|
|
|
|
template <class _Rp>
|
|
|
|
struct shared_future<_Rp&> {
|
|
|
|
shared_future(future<_Rp&>&& __f); // expected-warning {{rvalue references are a C++11 extension}}
|
|
|
|
};
|
|
|
|
void f() {
|
|
|
|
typedef int T;
|
|
|
|
get_future<int>();
|
|
|
|
typedef int& U;
|
|
|
|
shared_future<int&> f1 = get_future<int&>();
|
|
|
|
}
|
|
|
|
}
|
2013-02-14 09:18:37 +08:00
|
|
|
|
|
|
|
// This is OK. The variables have internal linkage and therefore no language
|
|
|
|
// linkage.
|
|
|
|
extern "C" {
|
|
|
|
static int test7_x;
|
|
|
|
}
|
|
|
|
extern "C++" {
|
|
|
|
extern int test7_x;
|
|
|
|
}
|
|
|
|
extern "C++" {
|
|
|
|
static int test7_y;
|
|
|
|
}
|
|
|
|
extern "C" {
|
|
|
|
extern int test7_y;
|
|
|
|
}
|
|
|
|
extern "C" { typedef int test7_F(); static test7_F test7_f; }
|
|
|
|
extern "C++" { extern test7_F test7_f; }
|
|
|
|
|
|
|
|
// FIXME: This should be invalid. The function has no language linkage, but
|
|
|
|
// the function type has, so this is redeclaring the function with a different
|
|
|
|
// type.
|
|
|
|
extern "C++" {
|
|
|
|
static void test8_f();
|
|
|
|
}
|
|
|
|
extern "C" {
|
|
|
|
extern void test8_f();
|
|
|
|
}
|
|
|
|
extern "C" {
|
|
|
|
static void test8_g();
|
|
|
|
}
|
|
|
|
extern "C++" {
|
|
|
|
extern void test8_g();
|
|
|
|
}
|
2013-02-14 09:47:04 +08:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
void __attribute__((overloadable)) test9_f(int c); // expected-note {{previous declaration is here}}
|
|
|
|
}
|
|
|
|
extern "C++" {
|
|
|
|
void __attribute__((overloadable)) test9_f(int c); // expected-error {{declaration of 'test9_f' has a different language linkage}}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
void __attribute__((overloadable)) test10_f(int);
|
|
|
|
void __attribute__((overloadable)) test10_f(double);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
void test11_f() {
|
|
|
|
void __attribute__((overloadable)) test11_g(int);
|
|
|
|
void __attribute__((overloadable)) test11_g(double);
|
|
|
|
}
|
|
|
|
}
|