2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
2007-12-18 14:06:23 +08:00
|
|
|
|
|
|
|
const char* test1 = 1 ? "i" : 1 == 1 ? "v" : "r";
|
|
|
|
|
2008-06-05 03:14:12 +08:00
|
|
|
void _efree(void *ptr);
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
int _php_stream_free1() {
|
|
|
|
return (1 ? free(0) : _efree(0)); // expected-error {{incompatible type returning 'void', expected 'int'}}
|
2008-06-05 03:14:12 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
int _php_stream_free2() {
|
|
|
|
return (1 ? _efree(0) : free(0)); // expected-error {{incompatible type returning 'void', expected 'int'}}
|
2008-06-05 03:14:12 +08:00
|
|
|
}
|