opnsense-src/test/CodeGenCXX/array-pointer-decay.cpp

8 lines
88 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 %s -emit-llvm -o -
2009-10-14 14:03:49 -04:00
void f(const char*);
void g() {
f("hello");
}