blob: 3fe6b72a54196c09ff914c1e1b6920bc12ca2ea7 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -emit-llvm -o -
Anders Carlsson2c101b32009-08-08 21:04:35 +00002
3void f(const char*);
4
5void g() {
6 f("hello");
7}