aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/assign-null.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Sema/assign-null.c')
-rw-r--r--clang/test/Sema/assign-null.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/test/Sema/assign-null.c b/clang/test/Sema/assign-null.c
deleted file mode 100644
index 6972d90..0000000
--- a/clang/test/Sema/assign-null.c
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: clang -fsyntax-only -verify %s
-
-#include <stddef.h>
-
-typedef void (*hookfunc)(void *arg);
-hookfunc hook;
-
-void clear_hook() {
- hook = NULL;
-}