array-pointer-decay.cpp revision 824957643238ea1712b966deee9c65043ac6ffea
1// RUN: clang-cc %s -emit-llvm -o -
2
3void f(const char*);
4
5void g() {
6  f("hello");
7}
8