[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Rewriter / line-generation-test.m
blob5193775fbedb29c3e9a7866fcbd19324ae26d8b0
1 // RUN: %clang_cc1 -E %s -o %t.mm
2 // RUN: %clang_cc1 -fms-extensions -rewrite-objc -debug-info-kind=limited %t.mm -o %t-rw.cpp
3 // RUN: FileCheck  -check-prefix CHECK-LINE --input-file=%t-rw.cpp %s
4 // RUN: %clang_cc1 -fms-extensions -rewrite-objc %t.mm -o %t-rwnog.cpp
5 // RUN: FileCheck  -check-prefix CHECK-NOLINE --input-file=%t-rwnog.cpp %s
6 // rdar://13138170
8 __attribute__((objc_root_class)) @interface MyObject {
9 @public
10     id _myLeader;
11     id _isTickledPink;
13 @property(retain) id myLeader;
14 @property(assign) id isTickledPink;
15 @end
17 @implementation MyObject
19 @synthesize myLeader = _myLeader;
20 @synthesize isTickledPink = _isTickledPink;
22 - (void) doSomething {
23     _myLeader = _isTickledPink;
26 @end
28 MyObject * foo ()
30         MyObject* p;
31         p.isTickledPink = p.myLeader;   // ok
32         p->_isTickledPink = p->_myLeader;
33         return p->_isTickledPink;
36 // CHECK-LINE: #line 22
37 // CHECK-LINE: #line 28
38 // CHECK-NOLINE-NOT: #line 22
39 // CHECK-NOLINE-NOT: #line 28