mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
99bb8eeb13
directory: some people (guess who!) may build llvm-gcc with support for objc but not with support for objc++. llvm-svn: 54471
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];
|
|
}
|