summaryrefslogtreecommitdiff
path: root/lib/BlocksRuntime/tests/block-static.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/BlocksRuntime/tests/block-static.c')
-rw-r--r--lib/BlocksRuntime/tests/block-static.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/BlocksRuntime/tests/block-static.c b/lib/BlocksRuntime/tests/block-static.c
deleted file mode 100644
index d38c816cf..000000000
--- a/lib/BlocksRuntime/tests/block-static.c
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-
-// testfilerunner CONFIG
-
-#include <stdio.h>
-
-
-int main(int argc, char **argv) {
- static int numberOfSquesals = 5;
-
- ^{ numberOfSquesals = 6; }();
-
- if (numberOfSquesals == 6) {
- printf("%s: success\n", argv[0]);
- return 0;
- }
- printf("**** did not update static local, rdar://6177162\n");
- return 1;
-
-}
-