blob: 544c329c5e2016b36095e9c35e675f5b6ce2c394 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +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};