1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
9 lines
228 B
Objective-C
9 lines
228 B
Objective-C
// RUN: %clang -Werror -fobjc-arc -fsyntax-only -fno-objc-arc -Xclang -verify %s
|
|
// rdar://8949617
|
|
|
|
void * FOO() {
|
|
id string = @"Hello World.\n";
|
|
void *pointer = string; // No error must be issued
|
|
return pointer;
|
|
}
|