aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2009-04-01 16:53:37 +0000
committerFariborz Jahanian <fjahanian@apple.com>2009-04-01 16:53:37 +0000
commit7e2e795b66ff46c34ba08acb53bc36269cfb509b (patch)
tree44c47d80a3648d87cb159538d4cce500018f90a7
parent5e2307437317922ce2202a2e990abb459d51175c (diff)
Removed the test case, as Chris did have a test case in the patch.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68214 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenObjC/forward-class-ivar-access.m43
1 files changed, 0 insertions, 43 deletions
diff --git a/test/CodeGenObjC/forward-class-ivar-access.m b/test/CodeGenObjC/forward-class-ivar-access.m
deleted file mode 100644
index c90d8ad213..0000000000
--- a/test/CodeGenObjC/forward-class-ivar-access.m
+++ /dev/null
@@ -1,43 +0,0 @@
-// RUN: clang-cc -emit-llvm -o %t %s
-
-@class XCLogItemAdapter;
-@class XCEConfigurableDataSource;
-
-@interface XCBuildResultsOutlineLogic {
- XCLogItemAdapter * _toplevelItemAdapter;
-}
-
-@end
-
-
-@interface XCBuildResultsOutlineView
-@property(nonatomic,readonly) XCEConfigurableDataSource * xceDataSource;
-
-@end
-
-@interface XCEConfigurableDataSource
-@property (nonatomic, assign) id context;
-
-@end
-
-
-@implementation XCBuildResultsOutlineView
-@dynamic xceDataSource;
-- selectionSource {
- XCBuildResultsOutlineLogic * outlineLogic;
-}
-
-@end
-
-@interface XCLogItemAdapter {
- id _textColor;
-}
-
-
-@end
-
-@implementation XCLogItemAdapter
-- (id) FOOO
-{
- return _textColor;
-}