From: Fariborz Jahanian Date: Wed, 1 Apr 2009 16:53:37 +0000 (+0000) Subject: Removed the test case, as Chris did have a test case in the patch. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e2e795b66ff46c34ba08acb53bc36269cfb509b;p=clang 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 --- 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; -}