blob: 01eefd41d653e8dacdbdd91a193758383cce29f1 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -fobjc-gc
typedef unsigned int NSUInteger;
__attribute__((objc_gc(strong))) float *_scores;
void foo(int i, float f) {
_scores[i] = f;
}