blob: 16593f128d785ffdc68a96493368438dd128a2ea [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
Rafael Espindolad029cbb2013-07-04 15:22:16 +00002// RUN: not grep 'objc_assign' %t
John McCall260611a2012-06-20 06:18:46 +00003// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
Rafael Espindolad029cbb2013-07-04 15:22:16 +00004// RUN: not grep 'objc_assign' %t
Fariborz Jahanian14674ff2009-05-27 19:54:11 +00005
6typedef struct {
7 int ival;
8 id submenu;
9} XCBinderContextMenuItem;
10
11id actionMenuForDataNode(void) {
12 XCBinderContextMenuItem menusToCreate[] = {
13 {1, 0}
14 };
15 return 0;
16}
17
18XCBinderContextMenuItem GmenusToCreate[] = {
19 {1, 0}
20};