1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/FrontendObjC++/2007-10-03-MetadataPointers.mm
Duncan Sands 99bb8eeb13 Move tests of the ObjC++ front-end to their own
directory: some people (guess who!) may build llvm-gcc
with support for objc but not with support for objc++.

llvm-svn: 54471
2008-08-07 17:48:08 +00:00

8 lines
130 B
Plaintext

// RUN: %llvmgcc -w -x objective-c++ -c %s -o /dev/null
@class NSImage;
void bork() {
NSImage *nsimage;
[nsimage release];
}