aboutsummaryrefslogtreecommitdiff
path: root/lib/asan/tests/stack-overflow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asan/tests/stack-overflow.cc')
-rw-r--r--lib/asan/tests/stack-overflow.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/asan/tests/stack-overflow.cc b/lib/asan/tests/stack-overflow.cc
deleted file mode 100644
index dd86aa32514a..000000000000
--- a/lib/asan/tests/stack-overflow.cc
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <string.h>
-int main(int argc, char **argv) {
- char x[10];
- memset(x, 0, 10);
- int res = x[argc * 10]; // BOOOM
- return res;
-}