blob: 17d4e1046e46f07ba280b171d1d6680e58776e77 [file] [log] [blame]
Fariborz Jahanian8604fae2009-12-14 17:13:18 +00001// RUN: clang -cc1 -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
Fariborz Jahanian14674ff2009-05-27 19:54:11 +00002// RUN: grep 'objc_assign' %t | count 0
3
4typedef struct {
5 int ival;
6 id submenu;
7} XCBinderContextMenuItem;
8
9id actionMenuForDataNode(void) {
10 XCBinderContextMenuItem menusToCreate[] = {
11 {1, 0}
12 };
13 return 0;
14}
15
16XCBinderContextMenuItem GmenusToCreate[] = {
17 {1, 0}
18};