Index: test/ios/xctests/App/AppDelegate.h |
diff --git a/test/win/compiler-flags/compile-as-managed.cc b/test/ios/xctests/App/AppDelegate.h |
similarity index 53% |
copy from test/win/compiler-flags/compile-as-managed.cc |
copy to test/ios/xctests/App/AppDelegate.h |
index a29c71ee1da9c18e5692a36c8aa007e13064ce19..359af8d0530451442ea7b68007c193a3698acd5d 100644 |
--- a/test/win/compiler-flags/compile-as-managed.cc |
+++ b/test/ios/xctests/App/AppDelegate.h |
@@ -2,8 +2,10 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include <vcclr.h> |
+#import <UIKit/UIKit.h> |
-int main() { |
- return 0; |
-} |
+@interface AppDelegate : UIResponder<UIApplicationDelegate> |
+ |
+@property(strong, nonatomic) UIWindow* window; |
+ |
+@end |