mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-01 00:38:50 +02:00
8 lines
141 B
C++
8 lines
141 B
C++
static const char A[] = "abc";
|
|
|
|
int strcmp(const char *, const char *);
|
|
|
|
int test_warning_patterns() {
|
|
if (strcmp(A, "a"))
|
|
return 0;
|
|
}
|