Added testcase for creation of metadata with null pointers.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42609 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2007-10-04 18:46:06 +00:00
parent 87b77b9079
commit 14af7450c2

View File

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