blob: f15a40fa083522ac267551dcc81de9bfccbbc5d7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: clang -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'}}
|