summaryrefslogtreecommitdiffstats
path: root/test/Sema/implicit-int.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/implicit-int.c')
-rw-r--r--test/Sema/implicit-int.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/Sema/implicit-int.c b/test/Sema/implicit-int.c
new file mode 100644
index 0000000..04b27a8
--- /dev/null
+++ b/test/Sema/implicit-int.c
@@ -0,0 +1,31 @@
+// RUN: clang-cc -fsyntax-only %s -verify -pedantic
+
+foo() { // expected-warning {{type specifier missing, defaults to 'int'}}
+}
+
+y; // expected-warning {{type specifier missing, defaults to 'int'}}
+
+// rdar://6131634
+void f((x)); // expected-warning {{type specifier missing, defaults to 'int'}}
+
+
+// PR3702
+#define PAD(ms10) { \
+ register i; \
+}
+
+#define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */
+
+void
+h19_insline(n) // expected-warning {{parameter 'n' was not declared, defaulting to type 'int'}}
+{
+ ILPAD(); // expected-warning {{type specifier missing, defaults to 'int'}}
+}
+
+struct foo {
+ __extension__ __attribute__((packed)) x : 4; // expected-warning {{type specifier missing, defaults to 'int'}}
+};
+
+
+
+
OpenPOWER on IntegriCloud