1/*
2 * Copyright (c) 2010 Apple Inc. All rights reserved.
3 *
4 * @APPLE_LLVM_LICENSE_HEADER@
5 */
6
7#include <stdio.h>
8#include "test.h"
9
10// TEST_CONFIG
11
12int AGlobal;
13
14int main() {
15    void (^f)(void) __unused = ^ { AGlobal++; };
16
17    succeed(__FILE__);
18}
19