1 // RUN: %clang_analyze_cc1 -triple i386-apple-darwin8 -analyzer-checker=core,alpha.core -analyzer-store=region -verify -Wno-objc-root-class %s
3 // <rdar://problem/6888289> - This test case shows that a nil instance
4 // variable can possibly be initialized by a method.
10 - (void) test2:(id) y;
16 @implementation RDar6888289
22 - (void) test2:(id)y {
24 *x = y; // expected-warning {{null}}