A significant number of our tests in C accidentally use functions without prototypes. This patch converts the function signatures to have a prototype for the situations where the test is not specific to K&R C declarations. e.g., void func(); becomes void func(void); This is the fifth batch of tests being updated (there are a significant number of other tests left to be updated). Note, the behavior of -ast-print is broken. It prints functions with a prototype (void) as if they have no prototype () in C. Some tests need to disable strict prototype checking when recompiling the results of an -ast-print invocation.
35 lines
772 B
Objective-C
35 lines
772 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
@interface NSString @end
|
|
|
|
@interface NSString (NSStringExtensionMethods)
|
|
+ (id)stringWithUTF8String:(const char *)nullTerminatedCString;
|
|
@end
|
|
|
|
extern char *strdup(const char *str);
|
|
|
|
id constant_string(void) {
|
|
return @("boxed constant string.");
|
|
}
|
|
|
|
id dynamic_string(void) {
|
|
return @(strdup("boxed dynamic string"));
|
|
}
|
|
|
|
id const_char_pointer(void) {
|
|
return @((const char *)"constant character pointer");
|
|
}
|
|
|
|
id missing_parentheses(void) {
|
|
return @(5; // expected-error {{expected ')'}} \
|
|
// expected-note {{to match this '('}}
|
|
}
|
|
|
|
// rdar://10679157
|
|
void bar(id p);
|
|
void foo(id p) {
|
|
bar(@{p, p}); // expected-error {{expected ':'}}
|
|
bar(0);
|
|
bar(0);
|
|
}
|