1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
5 int subfun(const char *text
) {
6 const char *tmp
= text
;
10 void fun(const char* text
) {
16 const char *end
= text
;
32 // also works, after commenting following line of source code
40 const char *text
= "some text";
43 const char *ptr
= text
;