blob: 028d78702fd936cea8b2663b963c1b66e7a9a95a (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// RUN: %clang_cc1 -x objective-c++ -fms-extensions -rewrite-objc %s -o %t-rw.cpp
// RUN: %clang_cc1 -fsyntax-only -Wno-attributes -D"__declspec(X)=" %t-rw.cpp
// rdar://11169733
extern "C" __declspec(dllexport)
@interface Test @end
@implementation Test @end
extern "C" {
__declspec(dllexport)
@interface Test1 @end
@implementation Test1 @end
__declspec(dllexport)
@interface Test2 @end
@implementation Test2 @end
};
|