blob: 2c5350969416f43eb5c6c634e5449e3b556cf49e [file] [log] [blame]
Fariborz Jahanian14674ff2009-05-27 19:54:11 +00001// RUN: clang-cc -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s &&
2// 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};