summarylogtreecommitdiffstats
path: root/PassingTest.c
diff options
context:
space:
mode:
authorMartoko2018-12-24 01:15:23 +0100
committerMartoko2018-12-24 13:33:17 +0100
commit54fab328d6be7868cc689d6bdc8be272e69ed6fa (patch)
tree529e46608fb33a745fd76bcc33e5f0e38e9cd65f /PassingTest.c
downloadaur-54fab328d6be7868cc689d6bdc8be272e69ed6fa.tar.gz
Initial commit
Diffstat (limited to 'PassingTest.c')
-rw-r--r--PassingTest.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/PassingTest.c b/PassingTest.c
new file mode 100644
index 000000000000..f3ddc3f955c4
--- /dev/null
+++ b/PassingTest.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+int main() {
+ int *s = NULL;
+ if (s != NULL) {
+ *s = 42;
+ }
+ return 0;
+}