mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-17 09:12:42 +00:00
c1d2ca1701
Warnings are legitimate. llvm-svn: 52187
8 lines
130 B
Plaintext
8 lines
130 B
Plaintext
// RUN: %llvmgcc -w -x objective-c++ -c %s -o /dev/null
|
|
|
|
@class NSImage;
|
|
void bork() {
|
|
NSImage *nsimage;
|
|
[nsimage release];
|
|
}
|