]> git.sur5r.net Git - cc65/blobdiff - test/err/static-3.c
Added regression tests of diagnostics for conflicts between extern/public and static...
[cc65] / test / err / static-3.c
diff --git a/test/err/static-3.c b/test/err/static-3.c
new file mode 100644 (file)
index 0000000..5b6839a
--- /dev/null
@@ -0,0 +1,20 @@
+/*
+  !!DESCRIPTION!! global non-static and static conflicts
+  !!ORIGIN!!      cc65 regression tests
+  !!LICENCE!!     Public Domain
+  !!AUTHOR!!      Greg King
+*/
+
+/*
+  see: https://github.com/cc65/cc65/issues/191
+*/
+
+#pragma warn(error, on)
+
+extern int n;
+static int n;           /* should give an error */
+
+int main(void)
+{
+    return n;
+}