Added testcase for creation of metadata with null pointers.

llvm-svn: 42609
This commit is contained in:
Bill Wendling 2007-10-04 18:46:06 +00:00
parent 76aff36d64
commit c20518d0df
1 changed files with 7 additions and 0 deletions

View File

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