diff options
Diffstat (limited to 'test/SemaObjC/conflict-nonfragile-abi2.m')
-rw-r--r-- | test/SemaObjC/conflict-nonfragile-abi2.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/conflict-nonfragile-abi2.m b/test/SemaObjC/conflict-nonfragile-abi2.m index e4b513f..86947cf 100644 --- a/test/SemaObjC/conflict-nonfragile-abi2.m +++ b/test/SemaObjC/conflict-nonfragile-abi2.m @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -fobjc-nonfragile-abi -verify -fsyntax-only %s -// rdar : // 8225011 +// rdar://8225011 int glob; // expected-note {{global variable declared here}} @@ -15,7 +15,7 @@ int glob; // expected-note {{global variable declared here}} @implementation I - (int) Meth { return glob; } // expected-warning {{when default property synthesis is on, 'glob' lookup will access}} @synthesize glob; -// rdar: // 8248681 +// rdar://8248681 - (int) Meth1: (int) p { extern int le; int l = 1; |