blob: 866c3304887ed36514a2f9227e4476036d64c5bc [file] [log] [blame]
Chris Lattnera9154772007-10-23 18:07:23 +00001// RUN: %llvmgcc -x objective-c -c %s -o /dev/null -fobjc-gc
2// rdar://5541393
3
4typedef unsigned int NSUInteger;
5__attribute__((objc_gc(strong))) float *_scores;
6
7void foo(int i, float f) {
8 _scores[i] = f;
9}