summaryrefslogtreecommitdiff
path: root/regress/usr.bin/xlint/test-26.c
diff options
context:
space:
mode:
Diffstat (limited to 'regress/usr.bin/xlint/test-26.c')
-rw-r--r--regress/usr.bin/xlint/test-26.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/regress/usr.bin/xlint/test-26.c b/regress/usr.bin/xlint/test-26.c
deleted file mode 100644
index 95f36cd2d7f..00000000000
--- a/regress/usr.bin/xlint/test-26.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* $OpenBSD: test-26.c,v 1.1 2011/05/31 22:35:19 martynas Exp $ */
-
-/*
- * Placed in the public domain by Martynas Venckus <martynas@openbsd.org>.
- *
- * Test lint warnings about empty non-compound selection statements.
- */
-
-/* ARGSUSED */
-int
-main(void)
-{
- if (0);
- if (0) 0;
- if (0) {}
-
- if (0) {} else;
- if (0) {} else 0;
- if (0) {} else {}
-
- return (0);
-}