| // The LLVM Compiler Infrastructure |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| * Created by Blaine Garst on 10/15/08. |
| #import <Block_private.h> |
| int main(int argc, char *argv[]) { |
| void (^block)(void) = (void (^)(void))0; |
| void (^blockcopy)(void) = Block_copy(block); |
| if (blockcopy != (void (^)(void))0) { |
| printf("whoops, somehow we copied NULL!\n"); |
| Block_release(blockcopy); |
| //_Block_destroy(blockcopy); |
| printf("%s: success\n", argv[0]); |