blob: b39a604f388c1c07027796c591b2d07e92cc0e5c [file] [log] [blame]
// RUN: %dragonegg -x objective-c -S %s -o /dev/null -fobjc-gc
// rdar://5541393
typedef unsigned int NSUInteger;
__attribute__((objc_gc(strong))) float *_scores;
void foo(int i, float f) {
_scores[i] = f;
}