blob: 77b0e90eca4a09cd29104adece2cd2183d4b1ce6 [file] [log] [blame]
/* APPLE LOCAL file radar 4727191 */
/* Test that assigning local variable to a property does not ICE. */
/* APPLE LOCAL radar 4899595 */
/* { dg-options "-mmacosx-version-min=10.5" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface Link
@property (copy) id test;
@end
int main() {
id pid;
Link *link;
link.test = pid;
}